Skip to content

Commit 7884868

Browse files
authored
Merge branch 'main' into ai-agent
2 parents 863382b + 0c1d17b commit 7884868

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Close inactive issues
2+
on:
3+
schedule:
4+
- cron: "30 1 * * *"
5+
6+
jobs:
7+
close-issues:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
issues: write
11+
pull-requests: write
12+
steps:
13+
- uses: actions/stale@v9
14+
with:
15+
days-before-issue-stale: 60
16+
days-before-issue-close: 14
17+
stale-issue-label: "stale"
18+
stale-issue-message: >
19+
Hi there! 👋
20+
21+
We're working to clean up our issue tracker by closing older issues that might not be relevant anymore. If you are able to reproduce this issue in the latest version of Acode, please let us know by commenting on this issue(i.e Bump!), and we will keep it open. If you can't reproduce it, feel free to close the issue yourself. Otherwise, we'll close it in 14 days.
22+
23+
Thanks for your help!
24+
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
25+
days-before-pr-stale: -1
26+
days-before-pr-close: -1
27+
any-of-issue-labels: "bug, todo, new plugin idea"
28+
operations-per-run: 100
29+
repo-token: ${{ secrets.GITHUB_TOKEN }}
30+

0 commit comments

Comments
 (0)