Scheduled update #35304
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Scheduled update | |
on: | |
schedule: | |
# Runs at minute 15 and 45 of every hour | |
- cron: '15,45 * * * *' | |
jobs: | |
update: | |
uses: ./.github/workflows/_update.yml | |
secrets: inherit | |
with: | |
check: false | |
squash_history: true |