Skip to content

Commit bc1061a

Browse files
authored
Close stale issue (#3635)
1 parent 1ce1b04 commit bc1061a

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: 'Close stale issues'
2+
on:
3+
schedule:
4+
- cron: '0 8 * * *'
5+
6+
jobs:
7+
stale:
8+
if: github.repository == 'pluginsGLPI/formcreator'
9+
permissions:
10+
issues: write # for actions/stale to close stale issues
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/stale@v10
14+
with:
15+
stale-issue-message: >-
16+
There has been no activity on this issue for some time and therefore it is considered stale
17+
and will be closed automatically in 10 days.
18+
19+
20+
If this issue is related to a bug, please try to reproduce on latest release. If the problem persist,
21+
feel free to add a comment to revive this issue.
22+
23+
If it is related to a new feature, please open a topic to discuss with community about this enhancement
24+
on [suggestion website](https://glpi.userecho.com/).
25+
26+
27+
You may also consider taking a [subscription](https://glpi-project.org/subscriptions/) to get professionnal
28+
support or [contact GLPI editor team](https://portal.glpi-network.com/contact-us) directly.
29+
days-before-issue-stale: 15
30+
days-before-pr-stale: -1 # PR will be marked as stale manually.
31+
days-before-close: 5
32+
exempt-issue-labels: "bug,enhancement,question,security" # Issues with "bug", "enhancement", "question" or "security" labels will not be marked as stale
33+
exempt-all-milestones: true # Do not check issues/PR with defined milestone.
34+
ascending: true # First check older issues/PR.
35+
operations-per-run: 750 # Max API calls per run.

0 commit comments

Comments
 (0)