Bilibili-Evolved/.github/workflows/stale.yml
2019-11-17 23:40:32 +08:00

24 lines
736 B
YAML

name: Stale Bot
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 is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 15 days'
stale-pr-message: 'This pull request is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 15 days'
stale-issue-label: 'stale'
stale-pr-label: 'stale'
exempt-issue-label: long-term
exempt-pr-label: long-term
days-before-stale: 30
days-before-close: 15