diff --git a/.github/workflows/stale-issues.yaml b/.github/workflows/stale-issues.yaml index 29d426d1..b0ac6053 100644 --- a/.github/workflows/stale-issues.yaml +++ b/.github/workflows/stale-issues.yaml @@ -11,14 +11,14 @@ jobs: stale: runs-on: ubuntu-latest steps: - - uses: actions/stale@v9 + - uses: actions/stale@v10 with: - stale-issue-message: 'This issue has been marked as stale due to 60 days of inactivity.' - stale-pr-message: 'This pull request has been marked as stale due to 60 days of inactivity.' + stale-issue-message: 'This issue has been marked as stale due to 30 days of inactivity and will automatically close after an additional 5 days' + stale-pr-message: 'This pull request has been marked as stale due to 30 days of inactivity and will automatically close after an additional 5 days.' exempt-issue-labels: bug,enhancement exempt-pr-labels: bug,enhancement - days-before-stale: 60 - days-before-close: -1 + days-before-stale: 30 + days-before-close: 5 remove-stale-when-updated: true remove-issue-stale-when-updated: true - remove-pr-stale-when-updated: true \ No newline at end of file + remove-pr-stale-when-updated: true