build: allow workflow_dispatch on scheduled Actions (#37128)

This commit is contained in:
Shelley Vohr 2023-02-03 19:55:04 +00:00 committed by GitHub
parent d02c9f8bc6
commit 0524b4e98a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -1,5 +1,6 @@
name: 'Close stale issues'
on:
workflow_dispatch:
schedule:
# 1:30am every day
- cron: '30 1 * * *'

View file

@ -2,6 +2,7 @@ name: Update AppVeyor Image
# Run chron daily Mon-Fri
on:
workflow_dispatch:
schedule:
- cron: '0 8 * * 1-5' # runs 8:00 every business day (see https://crontab.guru)