Skip to content

Commit

Permalink
use correct inputs syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
pluckyswan committed Dec 24, 2024
1 parent 17a5382 commit 77d9c71
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/staging-test-run_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ jobs:
- name: Run automated tests
env:
AZURE_STORAGE_CONNECTION_STRING: ${{ secrets.AUTOMATED_TEST_AZURE_STORAGE_CONNECTION_STRING }}
LOCAL_FILE_PATH: ${{ github.event.inputs.FILE_PATH }}
LOCAL_FILE_PATH: ${{ inputs.FILE_PATH }}
run: |
./gradlew rs-e2e:clean rs-e2e:${{ github.event.inputs.TEST_TYPE }}
done
./gradlew rs-e2e:clean rs-e2e:${{ inputs.TEST_TYPE }}
- name: Send slack notification on test failure
if: failure()
Expand All @@ -39,4 +38,4 @@ jobs:
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
webhook-type: incoming-webhook
payload: |
text: "${{ github.event.inputs.NAME }} Staging RS Integration Test Failed!: https://github.com/CDCgov/trusted-intermediary/actions/runs/${{ github.run_id }}"
text: "${{ inputs.NAME }} Staging RS Integration Test Failed!: https://github.com/CDCgov/trusted-intermediary/actions/runs/${{ github.run_id }}"

0 comments on commit 77d9c71

Please sign in to comment.