Skip to content

Commit

Permalink
fix issue with incorrect yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
scottaubrey committed Apr 4, 2024
1 parent c6f22ea commit e5527eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-notify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: ./.github/workflows/notify-slack.yml
secrets: inherit
with:
run_id: ${{ GITHUB_RUN_ID }}
run_id: ${{ env.GITHUB_RUN_ID }}

test-integration:
runs-on: ubuntu-latest
Expand All @@ -30,7 +30,7 @@ jobs:
- uses: ./.github/workflows/notify-slack.yml
secrets: inherit
with:
run_id: ${{ GITHUB_RUN_ID
run_id: ${{ env.GITHUB_RUN_ID }}

build-and-push:
runs-on: ubuntu-latest
Expand All @@ -39,4 +39,4 @@ jobs:
- uses: ./.github/workflows/notify-slack.yml
secrets: inherit
with:
run_id: ${{ GITHUB_RUN_ID
run_id: ${{ env.GITHUB_RUN_ID }}

0 comments on commit e5527eb

Please sign in to comment.