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
2d80cf9d
Unverified
Commit
2d80cf9d
authored
Apr 10, 2026
by
Fynn Schmitt-Ulms
Committed by
GitHub
Apr 10, 2026
Browse files
Fix pre-commit labeled trigger system (#39523)
Signed-off-by:
Fynn Schmitt-Ulms
<
fschmitt@redhat.com
>
parent
e7cfd7c5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
.github/workflows/pre-commit.yml
.github/workflows/pre-commit.yml
+12
-2
No files found.
.github/workflows/pre-commit.yml
View file @
2d80cf9d
...
@@ -2,6 +2,7 @@ name: pre-commit
...
@@ -2,6 +2,7 @@ name: pre-commit
on
:
on
:
pull_request
:
pull_request
:
types
:
[
opened
,
synchronize
,
reopened
,
labeled
]
push
:
push
:
branches
:
[
main
]
branches
:
[
main
]
...
@@ -15,7 +16,11 @@ permissions:
...
@@ -15,7 +16,11 @@ permissions:
jobs
:
jobs
:
pre-run-check
:
pre-run-check
:
if
:
github.event_name == 'pull_request'
if
:
>-
github.event_name == 'pull_request' &&
(github.event.action != 'labeled' ||
github.event.label.name == 'ready' ||
github.event.label.name == 'verified')
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
steps
:
steps
:
-
name
:
Check PR label and author merge count
-
name
:
Check PR label and author merge count
...
@@ -44,7 +49,12 @@ jobs:
...
@@ -44,7 +49,12 @@ jobs:
pre-commit
:
pre-commit
:
needs
:
pre-run-check
needs
:
pre-run-check
if
:
always() && (needs.pre-run-check.result == 'success' || needs.pre-run-check.result == 'skipped')
if
:
>-
always() &&
(github.event.action != 'labeled' ||
github.event.label.name == 'ready' ||
github.event.label.name == 'verified') &&
(needs.pre-run-check.result == 'success' || needs.pre-run-check.result == 'skipped')
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
steps
:
steps
:
-
uses
:
actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
# v6.0.1
-
uses
:
actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
# v6.0.1
...
...
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