ffmpeg-kit/.github/workflows/stale.yml

27 lines
1.1 KiB
YAML
Raw Normal View History

2021-08-14 22:01:11 +03:00
name: mark stale issues and pull requests
2021-01-09 18:20:22 +02:00
on:
schedule:
2022-06-11 11:44:24 +03:00
- cron: "30 1 * * *"
2021-01-09 18:20:22 +02:00
jobs:
stale:
runs-on: ubuntu-latest
2022-06-11 11:44:24 +03:00
permissions:
issues: write
pull-requests: write
2021-01-09 18:20:22 +02:00
steps:
2022-06-11 11:44:24 +03:00
- uses: actions/stale@v5
2021-08-14 22:01:11 +03:00
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
2022-06-11 11:44:24 +03:00
days-before-stale: 60
stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
stale-pr-message: 'This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.'
close-pr-message: 'This PR was closed because it has been stalled for 7 days with no activity.'
2021-08-14 22:01:11 +03:00
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'
2022-06-11 11:44:24 +03:00
exempt-issue-labels: 'enhancement,unreleased'
exempt-pr-labels: 'enhancement,unreleased'
2021-08-14 22:01:11 +03:00
exempt-all-assignees: 'true'