Skip to content

Commit

Permalink
Prevent bot to stale already acknowledged issues/FR
Browse files Browse the repository at this point in the history
At the moment the gitactions-bot tries to set the `stale` label even on issues/feature requests already marked as acknowledged or even on milestones (see robinostlund#627 for example).

This modification should tell the bot to avoid those types of issues.
  • Loading branch information
virtualdj authored Jan 4, 2025
1 parent 81c9b76 commit 6e5cb77
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/close_inactive_issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ jobs:
days-before-issue-stale: 30
days-before-issue-close: 14
stale-issue-label: "stale"
exempt-all-milestones: true
exempt-issue-labels: 'acknowledged'
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity."
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
days-before-pr-stale: -1
days-before-pr-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }}
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 6e5cb77

Please sign in to comment.