vscode/.github/workflows/locker.yml
2020-03-28 05:10:57 -07:00

27 lines
717 B
YAML

name: Locker
on:
schedule:
- 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:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions
uses: actions/checkout@v2
with:
repository: 'JacksonKearl/vscode-triage-github-actions'
ref: v15
- name: Run Locker
uses: ./locker
with:
daysSinceClose: 45
daysSinceUpdate: 3
ignoredLabel: "*out-of-scope"