-
Notifications
You must be signed in to change notification settings - Fork 223
32 lines (28 loc) · 928 Bytes
/
stale.yaml
File metadata and controls
32 lines (28 loc) · 928 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
25
26
27
28
29
30
31
32
name: Mark & close stale issues
on:
# enable running the workflow manually
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
permissions:
contents: read
issues: write
# only needed if marking PRs as stale
# pull-requests: write
jobs:
stale:
# only on original eclipse-hawkbit/hawkbit repo
if: github.repository == 'eclipse-hawkbit/hawkbit'
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10.2.0
with:
repo-token: ${{ secrets.PAT_SECRET }}
# disables automatic marking of issues as stale
days-before-stale: -1
days-before-close: 15
stale-issue-label: 'awaiting'
close-issue-message: |-
There has been no response from the original author so I closed this issue.
Please reach out if you have or find the answers we need so that we can investigate further.
only-labels: 'awaiting'