1
1
mirror of https://github.com/nektos/act.git synced 2024-09-11 04:25:30 +03:00
act/.github/workflows/stale.yml

24 lines
764 B
YAML
Raw Normal View History

name: 'Close stale issues'
2020-02-28 20:35:29 +03:00
on:
schedule:
- cron: '0 0 * * *'
2020-02-28 20:35:29 +03:00
jobs:
stale:
name: Stale
2020-02-28 20:35:29 +03:00
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Issue is stale and will be closed in 14 days unless there is new activity'
stale-pr-message: 'PR is stale and will be closed in 14 days unless there is new activity'
stale-issue-label: 'stale'
exempt-issue-labels: 'stale-exempt,kind/feature-request'
stale-pr-label: 'stale'
exempt-pr-labels: 'stale-exempt'
remove-stale-when-updated: 'True'
operations-per-run: 500
days-before-stale: 180
days-before-close: 14