Skip to content

Commit

Permalink
chore: flip ternary
Browse files Browse the repository at this point in the history
  • Loading branch information
iowillhoit committed Oct 16, 2024
1 parent 4e8e9a6 commit 397ec5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/promote-nightly-to-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
old-channel: nightly
new-channel: latest-rc
ignore-missing: ${{ github.event_name == 'workflow_run' && 'false' || inputs.ignore-missing }}
ignore-missing: ${{ github.event_name == 'workflow_dispatch' && inputs.ignore-missing || false }}

promote-verify:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/promote-rc-to-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
old-channel: latest-rc
new-channel: latest
use-ctc: true
ignore-missing: ${{ github.event_name == 'schedule' && 'false' || inputs.ignore-missing }}
ignore-missing: ${{ github.event_name == 'workflow_dispatch' && inputs.ignore-missing || false }}

promote-verify:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 397ec5f

Please sign in to comment.