Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

Locker - Lock stale issues and PRs #20

Locker - Lock stale issues and PRs

Locker - Lock stale issues and PRs #20

Workflow file for this run

name: Locker - Lock stale issues and PRs
on:
schedule:
# Every 10 minutes - https://crontab.guru/#0/10_*_*_*_*
- cron: '0/10 * * * *'
repository_dispatch:
# Events dispatched outside GitHub with "trigger-locker" event type
types: [trigger-locker]
workflow_dispatch:
# Manual triggering through the GitHub UI, API, or CLI
permissions:
issues: write
pull-requests: write
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions
uses: actions/checkout@v4
with:
repository: "microsoft/vscode-github-triage-actions"
path: ./actions
ref: stable
- name: Install Actions
run: npm install --production --prefix ./actions
- name: Run Locker
uses: ./actions/locker
with:
daysSinceClose: 14
daysSinceUpdate: 14