Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/close_stale_issues
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# 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: Mark stale issues and pull requests

on:
schedule:
- cron: '00 14 * * *'

jobs:
stale:

runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write

steps:
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-issue-stale: 730
days-before-pr-stale: 730
days-before-issue-close: 30
days-before-pr-close: -1
stale-issue-message: 'This issue has been inactive for two years. It will now be marked as stale and closed after 30 days of further inactivity. Please add a comment to reset this automatic closing of this issue or close it if solved.'
stale-pr-message: 'This PR has been inactive for two years. It will now be marked as stale. Please close this PR if no longer needed.'
stale-issue-label: 'Stale'
stale-pr-label: 'Stale'
close-issue-label: 'Closed by github-actions'
exempt-issue-labels: enhancement, feature request
exempt-pr-labels: enhancement, feature request
Loading