mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-13 05:12:55 -07:00
feat(workflow): expand stale-exempt labels to include help wanted and Public Roadmap (#17459)
This commit is contained in:
@@ -79,8 +79,14 @@ jobs:
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Skip if it has a maintainer label
|
// Skip if it has a maintainer, help wanted, or Public Roadmap label
|
||||||
if (issue.labels.some(label => label.name.toLowerCase().includes('maintainer'))) {
|
const rawLabels = issue.labels.map((l) => l.name);
|
||||||
|
const lowercaseLabels = rawLabels.map((l) => l.toLowerCase());
|
||||||
|
if (
|
||||||
|
lowercaseLabels.some((l) => l.includes('maintainer')) ||
|
||||||
|
lowercaseLabels.includes('help wanted') ||
|
||||||
|
rawLabels.includes('🗓️ Public Roadmap')
|
||||||
|
) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -40,5 +40,5 @@ jobs:
|
|||||||
If this is still relevant, you are welcome to reopen or leave a comment. Thanks for contributing!
|
If this is still relevant, you are welcome to reopen or leave a comment. Thanks for contributing!
|
||||||
days-before-stale: 60
|
days-before-stale: 60
|
||||||
days-before-close: 14
|
days-before-close: 14
|
||||||
exempt-issue-labels: 'pinned,security'
|
exempt-issue-labels: 'pinned,security,🔒 maintainer only,help wanted,🗓️ Public Roadmap'
|
||||||
exempt-pr-labels: 'pinned,security'
|
exempt-pr-labels: 'pinned,security,🔒 maintainer only,help wanted,🗓️ Public Roadmap'
|
||||||
|
|||||||
Reference in New Issue
Block a user