Skip to content

Commit

Permalink
Add exemptions to stale-pr-and-issues.yml (#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcbarton authored Dec 5, 2024
1 parent 3ec1452 commit 607ee77
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/stale-pr-and-issues.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Close inactive issues
name: Close inactive issues and PRs
on:
schedule:
- cron: "30 1 * * *"
Expand All @@ -17,9 +17,11 @@ jobs:
stale-issue-label: "stale"
stale-issue-message: "This issue is stale because it has been open for 90 days with no activity."
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
exempt-issue-labels: 'to-fix'
days-before-pr-stale: 90
days-before-pr-close: 14
stale-pr-label: "stale"
stale-pr-message: "This PR is stale because it has been open for 90 days with no activity."
close-pr-message: "This PR was closed because it has been inactive for 14 days since being marked as stale."
exempt-pr-labels: 'awaiting-approval,work-in-progress'
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 607ee77

Please sign in to comment.