fix: set merge conflict Action to run every 12 hours instead of every 15 minutes (#39335)

* fix: run action every 12 hours

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
This commit is contained in:
Randell Dawson
2020-07-29 05:16:48 -07:00
committed by GitHub
parent b58704a5ce
commit 0f7fc6d91b

View File

@ -1,8 +1,8 @@
name: 'Check for merge conflicts'
on:
schedule:
# run this Action every 15 minutes
- cron: '*/15 * * * *'
# run this Action every 12 hours
- cron: '0 */12 * * *'
jobs:
triage:
runs-on: ubuntu-18.04