Update locker.yml

This commit is contained in:
Jackson Kearl 2020-03-27 09:42:29 -07:00 committed by GitHub
parent 52fe5f21f5
commit 8c07482d5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,13 @@
name: Locker
on:
schedule:
- cron: 0 * * * *
- cron: 20 23 * * * # Daily at 4:20pm PDT
# Note for locker:
# The query for is:unlocked will return issues that have only recently been locked
# `Recent` can be a large number of days (I've seen up to 10)
# This thus has the potential to burn through more quota than it probably ought to
# Run sparingly.
jobs:
main:
@ -15,6 +21,6 @@ jobs:
- name: Run Locker
uses: ./locker
with:
daysSinceClose: 1000
daysSinceClose: 45
daysSinceUpdate: 3
ignoredLabel: "*out-of-scope"