Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add action for checking stale issues and PRs #108

Merged
merged 2 commits into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
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
42 changes: 0 additions & 42 deletions .circleci/config.yml

This file was deleted.

5 changes: 5 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,9 @@
":docker",
"docker:pinDigests",
],
labels: [
"renovate",
"renovate/{{replace '.*/' '' depName}}",
"renovate/{{updateType}}",
],
}
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.
Loading