Skip to content

Commit aa13b73

Browse files
authored
Add workflow for auto-closing stale issues
1 parent 8ee8b68 commit aa13b73

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Info Needed Closer
2+
on:
3+
schedule:
4+
- cron: 30 5 * * * # 10:30pm PT
5+
workflow_dispatch:
6+
7+
jobs:
8+
main:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout Actions
12+
uses: actions/checkout@v2
13+
with:
14+
repository: "microsoft/vscode-github-triage-actions"
15+
path: ./actions
16+
ref: stable
17+
- name: Install Actions
18+
run: npm install --production --prefix ./actions
19+
- name: Run Info Needed Closer
20+
uses: ./actions/needs-more-info-closer
21+
with:
22+
token: ${{secrets.AZCODE_BOT_PAT}}
23+
label: info-needed
24+
closeDays: 14
25+
closeComment: "This issue has been closed automatically because it needs more information and has not had recent activity. See also our [issue reporting](https://aka.ms/azcodeissuereporting) guidelines.\n\nHappy Coding!"
26+
pingDays: 80
27+
pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if the problem no longer exists, or adding more information."

0 commit comments

Comments
 (0)