hugo-theme-introduction/.github/workflows/stale.yml

23 lines
742 B
YAML
Raw Normal View History

2020-02-29 21:48:06 +00:00
name: Mark and close 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: 'It looks like this has been idle a while, so I am marking it as stale. Remove the label or comment if this issue should remain open.'
stale-pr-message: 'It looks like this PR has been idle a while, so I am marking it as stale. Remove the label or comment if this is still being worked on.'
stale-issue-label: 'no-activity'
stale-pr-label: 'no-activity'
2020-07-14 01:29:07 +00:00
exempt-pr-labels: 'help wanted'
2020-02-29 21:48:06 +00:00
days-before-stale: 30
days-before-close: 5