Skip to content

Commit cf8bac5

Browse files
committed
Merge remote-tracking branch 'upstream/ai-agent' into ai-agent
2 parents 98eb842 + 4dbb288 commit cf8bac5

File tree

5 files changed

+1183
-823
lines changed

5 files changed

+1183
-823
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)