Skip to content

Commit

Permalink
github action: add stales action
Browse files Browse the repository at this point in the history
Add action to add stale label on issues and PR when no activity
during 45 days.

Signed-off-by: Arnaud Pouliquen <[email protected]>
  • Loading branch information
arnopo committed Oct 12, 2023
1 parent d7c605c commit e28af01
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/stales.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: 'Stale issues and pull requests with no recent activity'
on:
schedule:
- cron: "15 00 * * *"

permissions:
issues: write
pull-requests: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been marked as a stale issue because it has been open (more than) 45 days with no activity.'
stale-pr-message: 'This pull request has been marked as a stale pull request because it has been open (more than) 45 days with no activity.'
stale-issue-label: Stale
stale-pr-label: Stale
exempt-issue-labels: bug,enhancement
exempt-pr-labels: bug,enhancement
days-before-stale: 45
remove-stale-when-updated: true
remove-issue-stale-when-updated: true
remove-pr-stale-when-updated: true

0 comments on commit e28af01

Please sign in to comment.