Fix tab order in RSS widget
[qBittorrent.git] / .github / workflows / stale_bot.yaml
blob6cd7278557c542a8dd2db48265ce67394ff1e8c9
1 name: Stale bot
3 on:
4   schedule:
5     - cron: '0 0 * * *'
7 permissions:
8   pull-requests: write
10 jobs:
11   stale:
12     runs-on: ubuntu-latest
13     steps:
14       - name: Mark and close stale PRs
15         uses: actions/stale@v9
16         with:
17           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."
18           close-pr-message: "This PR was closed because it has been stalled for some time with no activity."
19           days-before-stale: -1 # avoid marking issues
20           days-before-pr-stale: 60
21           days-before-close: -1 # avoid closing issues
22           days-before-pr-close: 7
23           exempt-all-pr-assignees: true  # avoid stale for all PR with assignees
24           exempt-all-pr-milestones: true # avoid stale for all PR with milestones
25           operations-per-run: 200