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

Commit

Permalink
ci: add lock workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
robingenz committed Nov 30, 2022
1 parent 577f5dc commit 45dcd92
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/lock.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Lock old issues and pull requests that are closed

on:
schedule:
- cron: '0 3 * * *'
workflow_dispatch:

permissions:
issues: write
pull-requests: write

concurrency:
group: lock

jobs:
action:
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v3
with:
issue-inactive-days: '56'

0 comments on commit 45dcd92

Please sign in to comment.