Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
e9a6203d
Unverified
Commit
e9a6203d
authored
Dec 01, 2024
by
Yineng Zhang
Committed by
GitHub
Dec 01, 2024
Browse files
feat: skip good first issue (#2298)
parent
62c516ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
.github/workflows/close-inactive-issues.yml
.github/workflows/close-inactive-issues.yml
+5
-0
No files found.
.github/workflows/close-inactive-issues.yml
View file @
e9a6203d
...
...
@@ -54,6 +54,11 @@ jobs:
}
for (const issue of issues.data) {
// Skip if the issue has 'good first issue' label
if (issue.labels.some(label => label.name === 'good first issue')) {
console.log(`Skipping issue #${issue.number} as it's marked as 'good first issue'`);
continue;
}
if (new Date(issue.updated_at) < sixtyDaysAgo) {
try {
await github.rest.issues.update({
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment