summaryrefslogtreecommitdiff
path: root/.github/workflows/stale.yml
blob: c77dc208dc38d6f72e11aa5e32588dc23ae571e0 (plain)
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
28
---
name: Mark stale issues and pull requests
on:
  schedule:
    - cron: "0 0 * * *"
jobs:
  stale:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/stale@v1
        with:
          repo-token: ${{ secrets.GITHUB_TOKEN }}
          stale-issue-message: |-
            This Issue has gone stale and will be closed automatically.

            If this is incorrect, please reopen and add the label `on hold`.

            Thank you.
          stale-pr-message: |-
            This Pull Request has gone stale and will be closed automatically.

            If this is incorrect, please reopen and add the label `on hold`.

            Thank you.
          stale-issue-label: 'stale'
          exempt-issue-label: 'on hold'
          stale-pr-label: 'stale'
          exempt-pr-label: 'on hold'