Skip to content

Commit

Permalink
feat: enhance stale issue and PR management in GitHub Actions
Browse files Browse the repository at this point in the history
- Added configuration for marking pull requests as stale after 14 days of inactivity.
- Introduced messages for stale and closed pull requests to improve user communication.
- Updated labels for stale issues and pull requests to better categorize them.

This update aims to streamline the management of stale issues and pull requests, ensuring timely follow-ups and closures.
  • Loading branch information
Timeraa committed Dec 25, 2024
1 parent 0f3b384 commit 15becb8
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,21 @@ jobs:
uses: actions/stale@v9
with:
days-before-stale: 60
days-before-pr-stale: 14
stale-issue-message: |
This issue has been marked as stale because it has been inactive for over 60 days.
If this is still relevant, please leave a comment to let us know.
Otherwise, this issue may be closed automatically in 7 days.
close-issue-message: |
This issue has been automatically closed due to inactivity for over 60 days.
If you believe this issue is still relevant, feel free to reopen it or create a new one with updated information.
stale-issue-label: inactive
only-labels: bug
stale-pr-message: |
This PR has been marked as stale because it has been inactive for over 14 days.
If you believe this PR is still relevant, please leave a comment to let us know.
Otherwise, this PR may be closed automatically in 7 days.
close-pr-message: |
This PR has been automatically closed due to inactivity for over 14 days.
If you believe this PR is still relevant, feel free to reopen it or create a new one with updated information.
stale-pr-label: stale
only-issue-labels: bug
debug-only: true

0 comments on commit 15becb8

Please sign in to comment.