Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions .github/workflows/close-stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
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: 100
Loading