name: Close Added/Fixed Issues
on:
release:
types: [published]
jobs:
close_issues:
name: Check Issues / PRs
runs-on: ubuntu-latest
steps:
- name: Close Issues (added/fixed)
uses: actions/stale@v3
with:
only-issues-labels: 'added,fixed'
close-issue-message: >
This is now available in the latest release.
close-issue-label: 'released'
days-before-issue-stale: 0
days-before-issue-close: 0
ignore-updates: true
Use sphinx and readthedocs to document Sunshine
Don't re-run PR actions when PR is edited (there is a re-run option in github now)
https://github.com/SunshineStream/Sunshine/blob/4b658cd86ba0b7520f6f7cb5b5f07d6775845a81/.github/workflows/CI.yml#L6
Change stale issues to 90/10 days instead of 30/5
https://github.com/SunshineStream/Sunshine/blob/4b658cd86ba0b7520f6f7cb5b5f07d6775845a81/.github/workflows/issues-stale.yml#L29-L30
Autoclose fixed/added issues. This needs to be tested/verified. (Question - Close issues immediately actions/stale#711)