Skip to content

Commit

Permalink
chore: add GH action (#643)
Browse files Browse the repository at this point in the history
  • Loading branch information
gioboa authored Nov 23, 2024
1 parent 1f9b2e7 commit 5dfebb0
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Close Stale Issues

on:
workflow_dispatch:

jobs:
close-stale-issues:
runs-on: ubuntu-latest
permissions:
issues: write

steps:
- uses: actions/stale@v9
with:
days-before-stale: 240 # 8 months
days-before-close: 0 # Close immediately when marked as stale
stale-issue-message: >
Partytown moves to QwikDev organization, this is a new beginning for the project.
So it's time to clarify the status and clean up the current state a bit.
This issue was automatically marked as deprecated and closed because it was not detected
recent activity for 8 months, date of latest version.
If this issue is still relevant, feel free to comment below and the maintainers will reopen it.
Thank you for your contributions.
close-issue-message: ''
stale-issue-label: 'stale'
exempt-issue-labels: 'pinned,security'

0 comments on commit 5dfebb0

Please sign in to comment.