Skip to content

Close stale issues and PRs #3

Close stale issues and PRs

Close stale issues and PRs #3

Workflow file for this run

# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: Close Stale Issues
uses: actions/stale@v9
with:
stale-issue-message: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
close-issue-message: false
days-before-stale: 360
days-before-close: 28
# Issues with these labels will never be considered stale
exempt-issue-labels:
- suggestion

Check failure on line 30 in .github/workflows/stale.yml

View workflow run for this annotation

GitHub Actions / Close stale issues and PRs

Invalid workflow file

The workflow is not valid. .github/workflows/stale.yml (Line: 30, Col: 13): A sequence was not expected
- bug
- improvement
- upstream issue
- wontfix
- to investigate