Skip to content

Commit

Permalink
Fix workflow config
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-asawicki committed Nov 22, 2023
1 parent 37b776c commit 45f6601
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}\"
Expand All @@ -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() }}
Expand All @@ -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 }}
Expand Down

0 comments on commit 45f6601

Please sign in to comment.