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

chore(ci): migrate probot-stale to actions/stale #2496

Merged
merged 1 commit into from
Jul 17, 2023
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
2 changes: 0 additions & 2 deletions .github/probots.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/stale.yml

This file was deleted.

36 changes: 36 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# configuration for https://github.com/actions/stale
name: "Stale issues and PRs"
on:
schedule:
- cron: "0 */2 * * *"

jobs:
stale:
runs-on: ubuntu-latest

steps:
- uses: actions/stale@v8
with:
days-before-stale: 90
days-before-close: 30
stale-issue-message: >-
Thank you for taking the time to raise this issue. However, it has
not had any activity on it in the past 90 days and will be closed in
30 days if no updates occur.

Please check if the main branch has already resolved the issue
since it was raised. If you believe the issue is still valid and you
would like input from the maintainers then please comment to ask for
it to be reviewed.
stale-pr-message: >-
Thank you for your contribution! However, this pull request has not
had any activity in the past 90 days and will be closed in 30 days if
no updates occur.

If you believe the changes are still valid then please verify your
branch has no conflicts with main and rebase if needed. If you
are awaiting a (re-)review then please let us know.
stale-issue-label: "stale"
exempt-issue-label: "stale/exempt,pinned"
stale-pr-label: "stale"
exempt-pr-label: "stale/exempt,pinned"