diff options
author | LostNeophyte <[email protected]> | 2023-02-16 16:49:55 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-02-16 16:49:55 +0100 |
commit | 28b4b8d8a601ce79b72cd634d5eaa556ab8d8d23 (patch) | |
tree | 05b40f4d25fa921d9920bfb3f00612a6b2f93028 | |
parent | 1a91812712c87483b328b32808d7e8d4640f06f7 (diff) |
ci(stale): adjust exemptions (#3848)
Co-authored-by: kylo252 <[email protected]>
-rw-r--r-- | .github/workflows/close-inactive-bot.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/close-inactive-bot.yml b/.github/workflows/close-inactive-bot.yml index 0ae33625..afe47918 100644 --- a/.github/workflows/close-inactive-bot.yml +++ b/.github/workflows/close-inactive-bot.yml @@ -10,13 +10,16 @@ jobs: issues: write pull-requests: write steps: - - uses: actions/stale@v5 + - uses: actions/stale@v7 with: - days-before-issue-stale: 30 + days-before-issue-stale: 50 days-before-issue-close: 14 stale-issue-label: 'stale' - stale-issue-message: 'This issue is stale because it has been open for 30 days with no activity.' + stale-issue-message: 'This issue is stale because it has been open for 50 days with no activity.' close-issue-message: 'This issue was closed because it has been inactive for 14 days since being marked as stale.' + remove-issue-stale-when-updated: true + exempt-all-milestones: true + exempt-all-issue-assignees: true days-before-pr-stale: -1 days-before-pr-close: -1 repo-token: ${{ secrets.GITHUB_TOKEN }} |