Update Lock Threads GitHub Action (#160) #718
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lock Threads | |
on: | |
push: | |
paths: | |
- .github/workflows/lock-threads.yml | |
branches-ignore: | |
- dependabot/** | |
schedule: | |
# Once every month on 9th day at 14:45 UTC | |
- cron: "45 14 9 * *" | |
issue_comment: | |
permissions: | |
issues: write | |
pull-requests: write | |
concurrency: | |
group: lock-threads | |
cancel-in-progress: ${{ github.event_name != 'issue_comment' }} | |
jobs: | |
lock-threads: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Lock Outdated Threads | |
uses: dessant/lock-threads@v5 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
process-only: 'issues, prs' | |
issue-inactive-days: 30 | |
add-issue-labels: outdated | |
pr-inactive-days: 30 | |
add-pr-labels: outdated |