Skip to content

Commit

Permalink
ci: fix env var case in workflows (#9877)
Browse files Browse the repository at this point in the history
**Related Issue:** #9851

## Summary

Fixes the case of environment variables in the workflow files, which I
made uppercase in the GitHub scripts.
  • Loading branch information
benelan authored and github-actions[bot] committed Jul 30, 2024
1 parent 00d69be commit 4549f54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/issue-notifications.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
if: github.event.label.name == 'spike complete'
uses: actions/github-script@v7
env:
managers: ${{secrets.CALCITE_MANAGERS}}
MANAGERS: ${{secrets.CALCITE_MANAGERS}}
with:
script: |
const action = require('${{ github.workspace }}/.github/scripts/notifyWhenSpikeComplete.js')
Expand All @@ -35,7 +35,7 @@ jobs:
if: github.event.label.name == 'ready for dev'
uses: actions/github-script@v7
env:
managers: ${{secrets.CALCITE_MANAGERS}}
MANAGERS: ${{secrets.CALCITE_MANAGERS}}
with:
script: |
const action = require('${{ github.workspace }}/.github/scripts/notifyWhenReadyForDev.js')
Expand All @@ -45,7 +45,7 @@ jobs:
if: github.event.label.name == 'new component'
uses: actions/github-script@v7
env:
designers: ${{secrets.CALCITE_DESIGNERS}}
DESIGNERS: ${{secrets.CALCITE_DESIGNERS}}
with:
script: |
const action = require('${{ github.workspace }}/.github/scripts/notifyAboutNewComponent.js')
Expand Down

0 comments on commit 4549f54

Please sign in to comment.