From 31d402dad717a19965d35cc2d5dafe0ed8e8bd90 Mon Sep 17 00:00:00 2001 From: sulmo <50662170+sulmoJ@users.noreply.github.com> Date: Thu, 28 Dec 2023 16:23:36 +0900 Subject: [PATCH] Update dev_build.yml --- .github/workflows/dev_build.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/dev_build.yml b/.github/workflows/dev_build.yml index d5ca5ff..7ebfbee 100644 --- a/.github/workflows/dev_build.yml +++ b/.github/workflows/dev_build.yml @@ -2,10 +2,6 @@ name: "[Dispatch] Dev build" on: workflow_dispatch: - inputs: - branch: - description: 'Branch name' - required: true env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} @@ -18,9 +14,9 @@ jobs: steps: - name: log run: | - echo "BRANCH: ${{ github.event.inputs.branch }}" + echo "BRANCH: ${{ github.ref }}" - name: Checkout uses: actions/checkout@v3 with: - ref: ${{ github.event.inputs.branch }} + ref: ${{ github.ref }} submodules: recursive