forked from JeremyHeleine/Photo-Sphere-Viewer
-
-
Notifications
You must be signed in to change notification settings - Fork 686
41 lines (33 loc) · 1.25 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
name: stale-issues
on:
schedule:
- cron: '0 5 * * *'
workflow_dispatch: {}
permissions:
issues: write
pull-requests: write
jobs:
stale-awaiting-answer:
if: github.repository == 'mistic100/Photo-Sphere-Viewer'
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
any-of-labels: 'awaiting answer'
days-before-stale: 7
days-before-close: 7
stale-issue-message: |
This issue has been automatically marked as stale because not enough information was provided. It will be closed if no further activity occurs.
stale-pr-message: |
This pulll request has been automatically marked as stale because not enough information was provided. It will be closed if no further activity occurs.
stale-help-wanted:
if: github.repository == 'mistic100/Photo-Sphere-Viewer'
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
any-of-labels: 'help wanted'
days-before-stale: 30
days-before-close: 14
stale-issue-message: |
This issue has been automatically marked as stale because I do not have the tools/knowledge/time to address it. It will be closed if no one can provide help.