mirror of
https://github.com/kou029w/web5.pages.dev.git
synced 2025-01-18 16:08:06 +00:00
add merge-schedule workflow
This commit is contained in:
parent
22c0e324be
commit
edd255d62e
1 changed files with 20 additions and 0 deletions
20
.github/workflows/merge-schedule.yml
vendored
Normal file
20
.github/workflows/merge-schedule.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
name: merge-schedule
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- edited
|
||||||
|
- synchronize
|
||||||
|
schedule:
|
||||||
|
# https://crontab.guru/every-hour
|
||||||
|
- cron: 0 * * * *
|
||||||
|
jobs:
|
||||||
|
merge_schedule:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: gr2m/merge-schedule-action@v2
|
||||||
|
with:
|
||||||
|
time_zone: Asia/Tokyo
|
||||||
|
require_statuses_success: "true"
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Add table
Reference in a new issue