-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check if 24h has passed since opening PR
- Loading branch information
1 parent
ae94cb1
commit 72b5afe
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# "Bake" workflow check if 24 hours have passed since opening pull request | ||
# making sure that reviewers have enough time to review the code | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
schedule: | ||
- cron: '0 */1 * * *' # Runs every 1 hour | ||
|
||
jobs: | ||
baking_pull_request: | ||
name: "Baking pull request ..." | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
steps: | ||
- uses: peternied/[email protected] | ||
with: | ||
check-name: "Baking pull request..." | ||
delay-hours: 24 |