forked from AliceO2Group/O2Physics
-
Notifications
You must be signed in to change notification settings - Fork 0
24 lines (22 loc) · 758 Bytes
/
stale.yml
File metadata and controls
24 lines (22 loc) · 758 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
---
name: "Close stale PRs"
on:
schedule:
- cron: "0 0 * * *"
permissions:
actions: write
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-pr-message: 'This PR has not been updated in the last 30 days. Is it still needed? Unless further action is taken, it will be closed in 5 days.'
stale-issue-message: 'This issue has not been updated in the last 30 days. Is it still needed? Unless further action is taken, it will be closed in 5 days.'
stale-pr-label: stale
days-before-stale: 30
days-before-close: 5
exempt-issue-labels: bug,enhancement