forked from eclipse-omr/omr
-
Notifications
You must be signed in to change notification settings - Fork 0
23 lines (22 loc) · 848 Bytes
/
stale.yml
File metadata and controls
23 lines (22 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: "Mark/Close Stale Issues/PRs"
on:
schedule:
- cron: "0 13 * * *"
jobs:
stale:
if: github.repository == 'eclipse-omr/omr'
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: |-
This issue is stale because it has been open 180 days with no activity. Remove stale label or comment on the issue or it will be closed in 60 days.
stale-pr-message: |-
This pull request is stale because it has been open 180 days with no activity. Remove stale label or comment on the pull request or it will be closed in 60 days.
days-before-stale: 180
days-before-close: 60
exempt-issue-labels: 'backlog'
stale-issue-label: 'stale'
stale-pr-label: 'stale'
debug-only: true