Some work about adaptive color scheme for Web UI (PR #19901)
http://[316:c51a:62a3:8b9::4]/d4708/qBittorrent/src/branch/adaptive-webui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
823 B
22 lines
823 B
3 years ago
|
name: Stale bot
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: '0 0 * * *'
|
||
|
|
||
|
jobs:
|
||
|
stale:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Mark and close stale PRs
|
||
|
uses: actions/stale@v4
|
||
|
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
|