diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml deleted file mode 100644 index 34537097..00000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: 🕒 Handle Stale Issues - -on: - schedule: - # Runs daily at 1:30 AM UTC (3:30 AM CEST - France time) - - cron: "30 1 * * *" - -jobs: - stale-issues: - name: 🗑️ Cleanup Stale Issues - runs-on: ubuntu-24.04 - permissions: - issues: write - pull-requests: write - - steps: - - name: 🔄 Mark/Close Stale Issues - uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0 - with: - # Global settings - repo-token: ${{ secrets.GITHUB_TOKEN }} - operations-per-run: 500 # Increase if you have >1000 issues - enable-statistics: true - - # Issue configuration - days-before-issue-stale: 90 - days-before-issue-close: 7 - stale-issue-label: "🕰️ stale" - exempt-issue-labels: "Roadmap v1,help needed,enhancement" - - # Notifications messages - stale-issue-message: | - ⏳ This issue has been automatically marked as **stale** because it has had no activity for 90 days. - - **Next steps:** - - If this is still relevant, add a comment to keep it open - - Otherwise, it will be closed in 7 days - - Thank you for your contributions! 🙌 - - close-issue-message: | - 🚮 This issue has been automatically closed due to inactivity (7 days since being marked stale). - - **Need to reopen?** - Click "Reopen" and add a comment explaining why this should stay open. - - # Disable PR handling - days-before-pr-stale: -1 - days-before-pr-close: -1