diff --git a/.github/workflows/locker.yml b/.github/workflows/locker.yml index 950731445e6e22d76d8430663b58c98c2d4d05dc..e1a2688f11bbd6e5f18fdce4892fe4b0e77e27ca 100644 --- a/.github/workflows/locker.yml +++ b/.github/workflows/locker.yml @@ -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"