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
OpenDAS
TransformerEngine
Commits
210e57de
Unverified
Commit
210e57de
authored
Jul 16, 2024
by
Tim Moon
Committed by
GitHub
Jul 16, 2024
Browse files
Simplify logic for launching CI (#1001)
Signed-off-by:
Tim Moon
<
tmoon@nvidia.com
>
parent
38b48c8a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
4 deletions
+23
-4
.github/workflows/blossom-ci.yml
.github/workflows/blossom-ci.yml
+5
-2
.github/workflows/trigger-ci.yml
.github/workflows/trigger-ci.yml
+18
-2
No files found.
.github/workflows/blossom-ci.yml
View file @
210e57de
...
...
@@ -23,9 +23,12 @@ jobs:
args
:
${{ env.args }}
# This job only runs for pull request comments
if
:
|
contains( ',ptrendx,ksivaman,', format(',{0},', github.actor)) &&
if
:
>
github.event.comment.body == '/blossom-ci'
&& (
github.actor == 'ptrendx'
|| github.actor == 'ksivaman'
)
steps
:
-
name
:
Check if comment is issued by authorized person
run
:
blossom-ci
...
...
.github/workflows/trigger-ci.yml
View file @
210e57de
...
...
@@ -15,9 +15,25 @@ jobs:
args
:
${{ env.args }}
# This job only runs for pull request comments
if
:
|
contains( ',ptrendx,ksivaman,schetlur-nv,timmoon10,zlsh80826,mingxu1067,cyanguwa,nzmora-nvidia,galagam,nouiz,denera,sudhakarsingh27,Oleg-Goncharov,phu0ngng,nvcforster,', format(',{0},', github.actor)) &&
if
:
>
startsWith(github.event.comment.body, '/te-ci')
&& (
github.actor == 'ptrendx'
|| github.actor == 'ksivaman'
|| github.actor == 'schetlur-nv'
|| github.actor == 'timmoon10'
|| github.actor == 'zlsh80826'
|| github.actor == 'mingxu1067'
|| github.actor == 'cyanguwa'
|| github.actor == 'nzmora-nvidia'
|| github.actor == 'galagam'
|| github.actor == 'nouiz'
|| github.actor == 'denera'
|| github.actor == 'sudhakarsingh27'
|| github.actor == 'Oleg-Goncharov'
|| github.actor == 'phu0ngng'
|| github.actor == 'nvcforster'
)
steps
:
-
name
:
Check if comment is issued by authorized person
run
:
blossom-ci
...
...
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