Skip to content

Commit

Permalink
chore: input default on cron
Browse files Browse the repository at this point in the history
  • Loading branch information
iowillhoit committed Oct 9, 2024
1 parent 7a5c386 commit 39be7c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/promote-rc-to-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
description: Ignore 'oclif promote' errors when a specific target is missing.
schedule:
# Wednesdays 1pm central
- cron: '0 18 * * 3'
- cron: '0 20 * * 3'

jobs:
promote:
Expand All @@ -20,7 +20,7 @@ jobs:
old-channel: latest-rc
new-channel: latest
use-ctc: true
ignore-missing: ${{ inputs.ignore-missing }}
ignore-missing: ${{ github.event_name == 'schedule' && 'false' || inputs.ignore-missing }}

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

0 comments on commit 39be7c2

Please sign in to comment.