Skip to content

Commit

Permalink
#10333 Updates issue stale action to fix issues with not running (#10334
Browse files Browse the repository at this point in the history
)
  • Loading branch information
jacobslusser committed Oct 5, 2023
1 parent 86c96c8 commit 130c035
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/repo-stale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,21 @@ name: Stale Check

on:
schedule:
- cron: '30 1 * * *'
- cron: '30 */12 * * *'
workflow_dispatch:

permissions:
issues: write
pull-requests: write
actions: write

jobs:
issues:
name: Check issues
name: Check for stale issues
runs-on: ubuntu-latest
if: ${{ contains(github.repository, 'jellyfin/') }}
steps:
- uses: actions/stale@1160a2240286f5da8ec72b1c0816ce2481aabf84 # v8.0.0
- uses: actions/stale@v8
with:
repo-token: ${{ secrets.JF_BOT_TOKEN }}
days-before-stale: 120
Expand All @@ -26,11 +27,11 @@ jobs:
exempt-issue-labels: regression,security,roadmap,future,feature,enhancement,confirmed
stale-issue-label: stale
stale-issue-message: |-
This issue has gone 120 days without comment. To avoid abandoned issues, it will be closed in 21 days if there are no new comments.
If you're the original submitter of this issue, please comment confirming if this issue still affects you in the latest release or master branch, or close the issue if it has been fixed. If you're another user also affected by this bug, please comment confirming so. Either action will remove the stale label.
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.
This bot exists to prevent issues from becoming stale and forgotten. Jellyfin is always moving forward, and bugs are often fixed as side effects of other changes. We therefore ask that bug report authors remain vigilant about their issues to ensure they are closed if fixed, or re-confirmed - perhaps with fresh logs or reproduction examples - regularly. If you have any questions you can reach us on [Matrix or Social Media](https://docs.jellyfin.org/general/getting-help.html).
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.
prs-conflicts:
name: Check PRs with merge conflicts
Expand Down

0 comments on commit 130c035

Please sign in to comment.