Skip to content

Commit

Permalink
fix: try adding double braces to the variable reference (#2041)
Browse files Browse the repository at this point in the history
* fix: try adding double braces to the variable reference

* chore: add debug workflow to figure this out

* chore: try again

* chore: try again again

* remove debug workflow

* update workflows FOR THE LAST TIME
  • Loading branch information
andrewleith authored Jan 9, 2025
1 parent 79ac85c commit 494d91b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cypress-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ jobs:
- name: Notify Slack channel if this job failed
if: ${{ failure() }}
run: |
json='{"text": "<!here> Staging a11y tests failed: <https://github.com/cds-snc/notification-admin/actions/runs/'${GITHUB_RUN_ID}'|see failure details> !"}'
json='{"text": "<!here> Staging a11y tests failed: <https://github.com/cds-snc/notification-admin/actions/runs/'${{ github.run_id }}'|see failure details> !"}'
curl -X POST -H 'Content-type: application/json' --data "$json" ${{ secrets.SLACK_WEBHOOK }}
2 changes: 1 addition & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,5 +121,5 @@ jobs:
- name: Notify Slack channel if this job failed
if: ${{ failure() }}
run: |
json='{"text":"<!here> CI is failing in <https://github.com/cds-snc/notification-admin/actions/runs/'${GITHUB_RUN_ID}'|see failure details> !"}'
json='{"text":"<!here> CI is failing in <https://github.com/cds-snc/notification-admin/actions/runs/'${{ github.run_id }}'|see failure details> !"}'
curl -X POST -H 'Content-type: application/json' --data "$json" ${{ secrets.SLACK_WEBHOOK }}

0 comments on commit 494d91b

Please sign in to comment.