forked from intel/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (24 loc) · 1.19 KB
/
sycl-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
name: Stale Issues
on:
schedule:
- cron: '30 1 * * *'
permissions: read-all
jobs:
close-issues:
permissions:
issues: write # for actions/stale to close stale issues
pull-requests: write # for actions/stale to close stale PRs
runs-on: ubuntu-20.04
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be automatically closed in 30 days.'
close-issue-message: 'This issue was closed because it has been stalled for 30 days with no activity. Please, re-open if the issue still exists.'
stale-pr-message: 'This pull request is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be automatically closed in 30 days.'
close-pr-message: 'This pull request was closed because it has been stalled for 30 days with no activity.'
days-before-stale: 180
days-before-close: 30
exempt-issue-labels: 'confirmed,hip,cuda,enhancement,help wanted,upstream'
stale-issue-label: 'stale'
exempt-all-issue-assignees: true
operations-per-run: 200