From b567c1317d7af07f91ba8cbaef2a8a271f47c5eb Mon Sep 17 00:00:00 2001 From: Fleny Date: Fri, 1 Dec 2023 21:57:37 +0100 Subject: [PATCH] Update stale action config (#3198) Exclude issues that have the `api-docs-commit` or the `[HELP WANTED] good first issue` label and run the action once a week --- .github/workflows/stale.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 56f1f3b8f..6628cd1a4 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -7,7 +7,7 @@ name: Mark stale issues and pull requests on: schedule: - - cron: '0 0 1 * *' + - cron: '0 0 * * 1' jobs: stale: @@ -25,3 +25,5 @@ jobs: stale-pr-message: 'This pull request has gone stale for over a month. If this pull request is still useful, leave a comment below. Otherwise, it will be closed shortly.' stale-issue-label: 'no-issue-activity' stale-pr-label: 'no-pr-activity' + exempt-issue-labels: 'api-docs-commits,[HELP WANTED] good first issue' + close-issue-reason: 'not_planned'