Skip to content

Commit 5dfebb0

Browse files
authored
chore: add GH action (#643)
1 parent 1f9b2e7 commit 5dfebb0

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/stale.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Close Stale Issues
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
close-stale-issues:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
issues: write
11+
12+
steps:
13+
- uses: actions/stale@v9
14+
with:
15+
days-before-stale: 240 # 8 months
16+
days-before-close: 0 # Close immediately when marked as stale
17+
stale-issue-message: >
18+
Partytown moves to QwikDev organization, this is a new beginning for the project.
19+
So it's time to clarify the status and clean up the current state a bit.
20+
This issue was automatically marked as deprecated and closed because it was not detected
21+
recent activity for 8 months, date of latest version.
22+
If this issue is still relevant, feel free to comment below and the maintainers will reopen it.
23+
Thank you for your contributions.
24+
close-issue-message: ''
25+
stale-issue-label: 'stale'
26+
exempt-issue-labels: 'pinned,security'

0 commit comments

Comments
 (0)