selinux-refpolicy/.github/workflows/stale.yml
Chris PeBenito 8407a5eafc stale.yml: Fix labels with spaces.
However, a bug prevents this from working on PRs, see actions/stale#98.

Signed-off-by: Chris PeBenito <pebenito@ieee.org>
2021-04-21 09:33:53 -04:00

24 lines
779 B
YAML

name: Mark stale issues and pull requests
on:
schedule:
- cron: "30 1 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has not had any recent activity. It will be closed in 7 days if it makes no further progress.'
close-issue-message: 'Closing stale PR.'
stale-pr-message: 'This PR has not had any recent activity. It will be closed in 7 days if it makes no further progress.'
close-pr-message: 'Closing stale PR.'
stale-issue-label: 'stale'
stale-pr-label: 'stale'
exempt-issue-labels: 'question,help wanted'
exempt-pr-labels: 'question,external bug,external dependency'