forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cockroachdb#75614 from lunevalex/alex/stale-bot-ro…
…achtest workflow: add a stale issue bot for KV test failures
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Mark stale test failure issues for KV | ||
|
||
on: | ||
schedule: | ||
- cron: "0 10 * * 1-4" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/stale@v3 | ||
with: | ||
operations-per-run: 1000 | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-message: | | ||
We have marked this test failure issue as stale because it has been | ||
inactive for 1 month. If this failure is still relevant, removing the | ||
stale label or adding a comment will keep it active. Otherwise, | ||
we'll close it in 5 days to keep the test failure queue tidy. | ||
stale-pr-message: 'Stale pull request message' | ||
stale-issue-label: 'no-test-failure-activity' | ||
stale-pr-label: 'no-pr-activity' | ||
close-issue-label: 'X-stale' | ||
close-pr-label: 'X-stale' | ||
# Disable this for PR's, by setting a very high bar | ||
days-before-pr-stale: 99999 | ||
days-before-issue-stale: 30 | ||
days-before-close: 5 | ||
only-labels: 'T-kv,C-test-failure' | ||
exempt-issue-labels: 'skipped-test' |