Skip to content

Commit

Permalink
chore: add lock workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
igordanchenko committed Sep 12, 2024
1 parent 7af43e1 commit df9ceac
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/lock.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Lock Closed Issues

on:
schedule:
- cron: "17 9 * * 0"

permissions:
issues: write

jobs:
action:
runs-on: ubuntu-latest

if: github.repository == 'igordanchenko/yet-another-react-lightbox'

steps:
- uses: dessant/lock-threads@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
issue-inactive-days: "90"
exclude-issue-created-after: "2022-07-01T00:00:00Z"
issue-lock-reason: ""
process-only: issues

0 comments on commit df9ceac

Please sign in to comment.