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 15becb8 commit 4f67be5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ jobs:
stale:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
steps:
- name: Stale
uses: actions/stale@v9
Expand All @@ -28,6 +30,7 @@ jobs:
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
stale-pr-label: inactive
stale-issue-label: inactive
only-issue-labels: bug
debug-only: true
operations-per-run: 1000

0 comments on commit 4f67be5

Please sign in to comment.