Z-Stack-firmware/.github/workflows/stale.yml

19 lines
668 B
YAML
Raw Normal View History

2020-08-10 20:36:23 +02:00
name: "Close stale issues/pull requests"
on:
schedule:
- cron: "0 0 * * *"
2020-09-01 18:25:53 +02:00
workflow_dispatch:
2020-08-10 20:36:23 +02:00
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
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 7 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 7 days'
days-before-stale: 30
days-before-close: 7
2020-09-01 18:25:53 +02:00
operations-per-run: 500