Skip to content

Commit 0d7328f

Browse files
authored
chore(ci): add ghosting automation (#9352)
1 parent 5451ba9 commit 0d7328f

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: No Response
2+
3+
on:
4+
schedule:
5+
# Schedule for five minutes after the hour, every hour
6+
- cron: "5 * * * *"
7+
8+
permissions:
9+
issues: write
10+
pull-requests: write
11+
12+
jobs:
13+
stale:
14+
if: github.repository == 'langchain-ai/langchainjs'
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Handle Ghosting
18+
uses: actions/stale@v10
19+
with:
20+
days-before-close: 10
21+
close-issue-message: >
22+
This issue has been automatically closed because we haven't received a
23+
response from the original author. This automation helps keep the issue
24+
tracker clean from issues that aren't actionable. Please reach out if you
25+
have more information for us! πŸ™‚
26+
close-pr-message: >
27+
This PR has been automatically closed because we haven't received a
28+
response from the original author. This automation helps keep the issue
29+
tracker clean from PRs that aren't actionable. Please reach out if you
30+
have more information for us! πŸ™‚
31+
# don't automatically mark issues/PRs as stale
32+
days-before-stale: -1
33+
stale-issue-label: needs-response
34+
stale-pr-label: needs-response

0 commit comments

Comments
Β (0)