build: allow workflow_dispatch on scheduled Actions (#37128)
This commit is contained in:
parent
d02c9f8bc6
commit
0524b4e98a
2 changed files with 2 additions and 0 deletions
1
.github/workflows/stale.yml
vendored
1
.github/workflows/stale.yml
vendored
|
@ -1,5 +1,6 @@
|
||||||
name: 'Close stale issues'
|
name: 'Close stale issues'
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
# 1:30am every day
|
# 1:30am every day
|
||||||
- cron: '30 1 * * *'
|
- cron: '30 1 * * *'
|
||||||
|
|
1
.github/workflows/update_appveyor_image.yml
vendored
1
.github/workflows/update_appveyor_image.yml
vendored
|
@ -2,6 +2,7 @@ name: Update AppVeyor Image
|
||||||
|
|
||||||
# Run chron daily Mon-Fri
|
# Run chron daily Mon-Fri
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 8 * * 1-5' # runs 8:00 every business day (see https://crontab.guru)
|
- cron: '0 8 * * 1-5' # runs 8:00 every business day (see https://crontab.guru)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue