From 5007d9d3d45b510c903972a7b99096b23f1a453e Mon Sep 17 00:00:00 2001 From: MatteoGabriele Date: Sat, 18 Apr 2026 19:08:22 +0200 Subject: [PATCH] chore: remove stale bot --- .github/workflows/close-stale.yml | 68 ------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 .github/workflows/close-stale.yml diff --git a/.github/workflows/close-stale.yml b/.github/workflows/close-stale.yml deleted file mode 100644 index 1d3d1f62f8..0000000000 --- a/.github/workflows/close-stale.yml +++ /dev/null @@ -1,68 +0,0 @@ -name: Close Stale Issues and PRs - -on: - schedule: - # Run daily at 2 AM UTC - - cron: '0 2 * * *' - workflow_dispatch: # Allow manual trigger - -permissions: - issues: write - pull-requests: write - -jobs: - stale: - runs-on: ubuntu-latest - steps: - - uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 - with: - days-before-stale: 30 - days-before-close: 14 - remove-stale-when-updated: true - stale-issue-label: 'stale' - stale-pr-label: 'stale' - close-issue-label: 'stale' - close-pr-label: 'stale' - stale-issue-message: | - Thank you for your contribution! 🙏 - - This issue has been inactive for 30 days and is now marked as stale. If there's no activity in the next 14 days, it will be closed to keep our repository tidy. - - **To keep this issue open**, feel free to: - - Leave a comment explaining your progress or needs - - Push a commit with updates - - Ask for help from maintainers - - We appreciate your interest in npmx and hope you'll continue contributing! 💙 - stale-pr-message: | - Thank you for your contribution! 🙏 - - This PR has been inactive for 30 days and is now marked as stale. If there's no activity in the next 14 days, it will be closed to keep our repository tidy. - - **To keep this PR open**, feel free to: - - Leave a comment explaining your progress or needs - - Push a commit with updates - - Ask for help from maintainers - - We appreciate your interest in npmx and hope you'll continue contributing! 💙 - close-issue-message: | - Thank you for your contribution! 🙏 - - Unfortunately, this issue has been marked as stale for 14 days without any updates and we're now closing it to keep our repository tidy. - - **If you'd like to continue working on this**, feel free to: - - Reopen this issue - - Leave a comment explaining your progress - - We appreciate your interest in npmx and hope you'll continue contributing! 💙 - close-pr-message: | - Thank you for your contribution! 🙏 - - Unfortunately, this PR has been marked as stale for 14 days without any updates and we're now closing it to keep our repository tidy. - - **If you'd like to continue working on this**, feel free to: - - Reopen this PR - - Leave a comment explaining your progress - - We appreciate your interest in npmx and hope you'll continue contributing! 💙 - operations-per-run: 500