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
ColossalAI
Commits
579dba57
Unverified
Commit
579dba57
authored
Jan 16, 2023
by
Frank Lee
Committed by
GitHub
Jan 16, 2023
Browse files
[workflow] fixed the skip condition of example weekly check workflow (#2481)
parent
21c88220
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
.github/workflows/auto_example_check.yml
.github/workflows/auto_example_check.yml
+4
-6
No files found.
.github/workflows/auto_example_check.yml
View file @
579dba57
...
@@ -81,9 +81,8 @@ jobs:
...
@@ -81,9 +81,8 @@ jobs:
# This is for all files' weekly check. Specifically, this job is to find all the directories.
# This is for all files' weekly check. Specifically, this job is to find all the directories.
matrix_preparation
:
matrix_preparation
:
if
:
|
if
:
|
github.event.pull_request.draft == false &&
github.repository == 'hpcaitech/ColossalAI' &&
github.base_ref == 'main' &&
github.event_name == 'schedule'
github.event.pull_request.base.repo.full_name == 'hpcaitech/ColossalAI' && github.event_name == 'schedule'
name
:
Prepare matrix for weekly check
name
:
Prepare matrix for weekly check
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
outputs
:
outputs
:
...
@@ -101,9 +100,8 @@ jobs:
...
@@ -101,9 +100,8 @@ jobs:
weekly_check
:
weekly_check
:
if
:
|
if
:
|
github.event.pull_request.draft == false &&
github.repository == 'hpcaitech/ColossalAI' &&
github.base_ref == 'main' &&
github.event_name == 'schedule'
github.event.pull_request.base.repo.full_name == 'hpcaitech/ColossalAI' && github.event_name == 'schedule'
name
:
Weekly check all examples
name
:
Weekly check all examples
needs
:
matrix_preparation
needs
:
matrix_preparation
runs-on
:
[
self-hosted
,
gpu
]
runs-on
:
[
self-hosted
,
gpu
]
...
...
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