mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-11-27 17:43:27 +00:00
chore: don't run legacy pipeline when warming (#634)
This commit is contained in:
parent
8cf7e6f995
commit
7402da72c1
|
@ -26,8 +26,14 @@ jobs:
|
||||||
docker:
|
docker:
|
||||||
- image: cimg/base:2023.03
|
- image: cimg/base:2023.03
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- when:
|
||||||
- run: echo "this is an example of legacy non-workflows job"
|
condition:
|
||||||
|
and:
|
||||||
|
- not:
|
||||||
|
equal: [scheduled_pipeline, << pipeline.trigger_source >>]
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run: echo "this is an example of legacy non-workflows job"
|
||||||
|
|
||||||
workflows:
|
workflows:
|
||||||
default-workflow:
|
default-workflow:
|
||||||
|
|
Loading…
Reference in a new issue