-
Notifications
You must be signed in to change notification settings - Fork 178
26 lines (24 loc) · 1.29 KB
/
stale.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
---
name: 'Stale issues and PRs handler'
# Handles stale github issues and pull requests.
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
stale:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.APIX_BOT_PAT }}
steps:
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e
id: stale
with:
stale-issue-message: 'This issue has gone 7 days without any activity and meets the project’s definition of "stale". This will be auto-closed if there is no new activity over the next 7 days. If the issue is still relevant and active, you can simply comment with a "bump" to keep it open, or add the label "not_stale". Thanks for keeping our repository healthy!'
stale-pr-message: 'This PR has gone 7 days without any activity and meets the project’s definition of "stale". This will be auto-closed if there is no new activity over the next 7 days. If the issue is still relevant and active, you can simply comment with a "bump" to keep it open, or add the label "not_stale". Thanks for keeping our repository healthy!'
stale-issue-label: 'stale'
stale-pr-label: 'stale'
days-before-stale: 5
days-before-close: 2
exempt-pr-labels: 'not_stale'
exempt-issue-labels: 'not_stale'