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.
36 lines
1.2 KiB
36 lines
1.2 KiB
1 year ago
|
name: Stale Issue Labeler
|
||
3 years ago
|
|
||
|
on:
|
||
|
schedule:
|
||
1 year ago
|
- cron: '30 1 * * *'
|
||
3 years ago
|
workflow_dispatch:
|
||
|
|
||
2 years ago
|
permissions:
|
||
|
issues: write
|
||
2 years ago
|
pull-requests: write
|
||
1 year ago
|
actions: write
|
||
2 years ago
|
|
||
3 years ago
|
jobs:
|
||
2 years ago
|
issues:
|
||
1 year ago
|
name: Check for stale issues
|
||
3 years ago
|
runs-on: ubuntu-latest
|
||
3 years ago
|
if: ${{ contains(github.repository, 'jellyfin/') }}
|
||
3 years ago
|
steps:
|
||
1 year ago
|
- uses: actions/stale@1160a2240286f5da8ec72b1c0816ce2481aabf84 # v8.0.0
|
||
3 years ago
|
with:
|
||
3 years ago
|
repo-token: ${{ secrets.JF_BOT_TOKEN }}
|
||
1 year ago
|
ascending: true
|
||
3 years ago
|
days-before-stale: 120
|
||
|
days-before-pr-stale: -1
|
||
|
days-before-close: 21
|
||
|
days-before-pr-close: -1
|
||
1 year ago
|
operations-per-run: 500
|
||
3 years ago
|
exempt-issue-labels: regression,security,roadmap,future,feature,enhancement,confirmed
|
||
|
stale-issue-label: stale
|
||
|
stale-issue-message: |-
|
||
1 year ago
|
This issue has gone 120 days without an update and will be closed within 21 days if there is no new activity. To prevent this issue from being closed, please confirm the issue has not already been fixed by providing updated examples or logs.
|
||
2 years ago
|
|
||
1 year ago
|
If you have any questions you can use one of several ways to [contact us](https://jellyfin.org/contact).
|
||
|
close-issue-message: |-
|
||
|
This issue was closed due to inactivity.
|