Skip to content

Commit 49b8d7e

Browse files
Merge branch 'main' into dev
2 parents 01382bc + c8ccd6b commit 49b8d7e

File tree

2 files changed

+21
-11
lines changed

2 files changed

+21
-11
lines changed

.github/no-response.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Close inactive issues
2+
on:
3+
schedule:
4+
- cron: "15 1 * * *" # “At 01:15.”
5+
6+
jobs:
7+
close-issues:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
issues: write
11+
pull-requests: write
12+
steps:
13+
# https://github.com/marketplace/actions/close-stale-issues
14+
- uses: actions/stale@v5
15+
with:
16+
days-before-stale: -1 # Add the stale label manually.
17+
days-before-close: 21
18+
only-labels: "more info required"
19+
stale-issue-label: "more info required"
20+
close-issue-message: "Without additional information, we are unfortunately not sure how to resolve this issue. Therefore this issue has been automatically closed. Feel free to comment with additional details and we can re-open this issue."
21+
close-pr-message: "Without additional information, we are unfortunately not sure how to address this pull request. Therefore this pull request has been automatically closed. Feel free to comment with additional details or submit a new pull request."

0 commit comments

Comments
 (0)