-
Notifications
You must be signed in to change notification settings - Fork 29
24 lines (23 loc) · 1019 Bytes
/
close-inactive-issues.yml
File metadata and controls
24 lines (23 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: Close inactive issues
on:
schedule:
- cron: '30 1 * * *'
jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/stale@v10
with:
any-of-labels: '⌛ Status: Awaiting for feedback'
start-date: '2022-05-01 00:00:00.000'
days-before-issue-stale: 14
days-before-issue-close: 14
stale-issue-label: 'stale'
stale-issue-message: "This issue has been marked as 'stale' due to its inactivity for the last 14 days. Please, add a new comment to keep the conversation going; otherwise, the issue will be closed in two weeks."
close-issue-message: 'This issue has been closed due to its inactivity for the last month. Please, feel free to reopen it and add a new comment in case you think the problem has not been resolved.'
days-before-pr-stale: -1
days-before-pr-close: -1
operations-per-run: 50
repo-token: ${{ secrets.GITHUB_TOKEN }}