Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
4fbf4aa1
Unverified
Commit
4fbf4aa1
authored
Jul 29, 2024
by
Kevin H. Luu
Committed by
GitHub
Jul 29, 2024
Browse files
[ci] GHA workflow to remove ready label upon "/notready" comment (#6921)
Signed-off-by:
kevin
<
kevin@anyscale.com
>
parent
aae6d36f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
.github/workflows/remove_label_not_ready_comment.yml
.github/workflows/remove_label_not_ready_comment.yml
+23
-0
No files found.
.github/workflows/remove_label_not_ready_comment.yml
0 → 100644
View file @
4fbf4aa1
name
:
Remove ready Label on notready Comment
on
:
issue_comment
:
types
:
[
created
]
jobs
:
add-ready-label
:
runs-on
:
ubuntu-latest
if
:
github.event.issue.pull_request && contains(github.event.comment.body, '/notready')
steps
:
-
name
:
Remove ready label
uses
:
actions/github-script@v5
with
:
script
:
|
github.rest.issues.removeLabel({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
name: 'ready'
})
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
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