mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-22 09:16:05 +03:00
293a2efca7
PR #20220. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
25 lines
894 B
YAML
25 lines
894 B
YAML
name: Stale bot
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Mark and close stale PRs
|
|
uses: actions/stale@v9
|
|
with:
|
|
stale-pr-message: "This PR is stale because it has been 60 days with no activity. This PR will be automatically closed within 7 days if there is no further activity."
|
|
close-pr-message: "This PR was closed because it has been stalled for some time with no activity."
|
|
days-before-stale: -1 # avoid marking issues
|
|
days-before-pr-stale: 60
|
|
days-before-close: -1 # avoid closing issues
|
|
days-before-pr-close: 7
|
|
exempt-all-pr-assignees: true # avoid stale for all PR with assignees
|
|
exempt-all-pr-milestones: true # avoid stale for all PR with milestones
|
|
operations-per-run: 200
|