Skip to content

Commit

Permalink
Create stale.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
smplayer-dev authored Dec 22, 2024
1 parent 3e98aae commit b077641
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Mark stale issues and pull requests

on:
schedule:
- cron: '0 15 * * *'

jobs:
stale:

runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write

steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs.'
stale-pr-message: 'This pull request has been marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs.'
stale-pr-label: 'stale'
days-before-stale: 180
days-before-close: 14
exempt-all-milestones: true

0 comments on commit b077641

Please sign in to comment.