diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5499ce78b6..93eeb03e2b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest if: (github.event_name == 'repository_dispatch') || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) steps: - - id: verify-sha-input + - id: verify_sha_input if: github.event_name == 'repository_dispatch' run: | echo \"${{ github.event.client_payload.pull_request.head.sha }}\" @@ -38,14 +38,14 @@ jobs: run: make dev-setup - name: Create and populate .snowflake/config file - id: create-config + id: create_config run: mkdir $HOME/.snowflake && echo "${{ secrets.SNOWFLAKE_CONFIG_FILE }}" > $HOME/.snowflake/config - run: make test - if: ${{ steps.create-config.conclusion == 'success' }} + if: ${{ steps.create_config.conclusion == 'success' }} - run: make test-acceptance - if: ${{ steps.create-config.conclusion == 'success' }} + if: ${{ steps.create_config.conclusion == 'success' }} - name: sweepers cleanup if: ${{ always() }} @@ -72,7 +72,7 @@ jobs: - name: set fork job status uses: actions/github-script@v6 if: ${{ always() }} - id: update-check-run + id: update_check_run env: number: ${{ github.event.client_payload.pull_request.number }} job: ${{ github.job }}