vscode/.github/workflows/locker.yml
2020-04-05 09:24:54 -07:00

28 lines
735 B
YAML

name: Locker
on:
schedule:
- cron: 20 23 * * * # 4:20pm Redmond
repository_dispatch:
# 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: v21
- name: Run Locker
uses: ./locker
with:
daysSinceClose: 45
daysSinceUpdate: 3
ignoredLabel: "*out-of-scope"