Skip to content

Commit

Permalink
ci: create action to close stale issues
Browse files Browse the repository at this point in the history
  • Loading branch information
stempler committed May 6, 2024
1 parent 990a152 commit 82a2935
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Close stale issues and PRs
on:
workflow_dispatch:
schedule:
- cron: 30 1 * * *

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0
with:
# Number of days of inactivity before an issue becomes stale
days-before-stale: 60

# Number of days of inactivity before a stale issue is closed
days-before-close: 14

# Label to use when marking an issue as stale
stale-issue-label: stale
stale-pr-label: stale

# Issues with these labels will never be considered stale
exempt-issue-labels: pinned,security,confirmed,planned,renovate
exempt-pr-labels: pinned,security,confirmed,planned,dependencies,renovate

stale-issue-message: >
This issue has been automatically marked as stale because it has not had
activity in the last 60 days. It will be closed in two weeks if no further activity
occurs. Thank you for your contributions.
close-issue-message: >
This issue has been automatically closed due to inactivity. If it
is still valid, please post a comment.
stale-pr-message: >
This pull request has been automatically marked as stale because it has not had
activity in the last 60 days. It will be closed in two weeks if no further activity
occurs. Thank you for your contributions.
close-pr-message: >
This pull request has been automatically closed due to inactivity. If it
is still valid, please post a comment.

0 comments on commit 82a2935

Please sign in to comment.