Skip to content

Commit

Permalink
Create stale.yml to automate closing old issues and PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
bcampolo authored Sep 28, 2024
1 parent 2c5a0f6 commit d909290
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: Mark stale issues and pull requests

on:
schedule:
- cron: '41 14 * * *'

jobs:
stale:

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

steps:
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 60
days-before-close: 30
stale-issue-message: 'This issue has been inactive for 60 days. In 30 days it will be closed unless you reply or make a change.'
stale-pr-message: 'This PR has been inactive for 60 days. In 30 days it will be closed unless you add a comment or make a change.'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'

0 comments on commit d909290

Please sign in to comment.