-
-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (34 loc) · 1.65 KB
/
stale_issues.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: 👓 Handle stale issues
on:
schedule:
- cron: "30 1 * * *"
jobs:
stale:
if: github.repository_owner == 'qgis'
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: >
The QGIS project highly values your report and would love to see it addressed.
However, this issue has been left in feedback mode for the last 14 days and is
being automatically marked as "stale".
If you would like to continue with this issue, please provide any missing information
or answer any open questions. If you could resolve the issue yourself meanwhile,
please leave a note for future readers with the same problem and close the issue.
In case you should have any uncertainty, please leave a comment and we will be
happy to help you proceed with this issue.
If there is no further activity on this issue, it will be closed in a week.
close-issue-message: >
While we hate to see this happen, this issue has been automatically closed because
it has not had any activity in the last 42 days despite being marked as feedback.
If this issue should be reconsidered, please follow the guidelines in the previous
comment and reopen this issue.
Or, if you have any further questions, there are also
[further support channels](https://www.qgis.org/en/site/forusers/support.html)
that can help you.
stale-issue-label: 'stale'
only-labels: 'feedback'
days-before-stale: 14
days-before-close: 28