actions-hugo/.github/workflows/stale.yml

19 lines
618 B
YAML
Raw Normal View History

name: Stale
2019-12-05 09:06:35 +01:00
on:
schedule:
- cron: "6 6 * * *"
jobs:
stale:
runs-on: ubuntu-18.04
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open 21 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
stale-pr-message: 'This pull request is stale because it has been open 21 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
2019-12-05 09:06:35 +01:00
days-before-stale: 21
days-before-close: 7
2020-01-19 07:37:28 +01:00
operations-per-run: 1