forked from is-a-dev/register
-
Notifications
You must be signed in to change notification settings - Fork 0
22 lines (19 loc) · 779 Bytes
/
stale.yml
File metadata and controls
22 lines (19 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: Stale
on:
schedule:
- cron: "0 12 * * *"
workflow_dispatch:
jobs:
label:
name: Label
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 7
days-before-close: 3
stale-issue-message: "This issue has been marked as stale due to inactivity and will be closed. Comment anything on this issue to prevent it"
stale-pr-message: "This pull request has been marked as stale due to inactivity and will be closed. Comment anything on this PR to prevent it"
exempt-issue-labels: "no-stale"
exempt-pr-labels: "no-stale"