mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-12 04:50:39 +00:00
fix(ci): ensure workflow runs when manually run or scheduled
This commit is contained in:
parent
27d866795c
commit
5ba25efd54
2 changed files with 6 additions and 0 deletions
3
.github/workflows/integration-tests.yml
vendored
3
.github/workflows/integration-tests.yml
vendored
|
@ -53,6 +53,9 @@ concurrency:
|
||||||
jobs:
|
jobs:
|
||||||
discover-tests:
|
discover-tests:
|
||||||
if: |
|
if: |
|
||||||
|
github.event_name == "push" ||
|
||||||
|
github.event_name == "schedule" ||
|
||||||
|
github.event_name == "workflow_dispatch" ||
|
||||||
github.event.action == 'opened' ||
|
github.event.action == 'opened' ||
|
||||||
github.event.action == 'synchronize' ||
|
github.event.action == 'synchronize' ||
|
||||||
(github.event.action == 'labeled' && contains(github.event.pull_request.labels.*.name, 're-record-tests'))
|
(github.event.action == 'labeled' && contains(github.event.pull_request.labels.*.name, 're-record-tests'))
|
||||||
|
|
|
@ -45,6 +45,9 @@ concurrency:
|
||||||
jobs:
|
jobs:
|
||||||
discover-tests:
|
discover-tests:
|
||||||
if: |
|
if: |
|
||||||
|
github.event_name == "push" ||
|
||||||
|
github.event_name == "schedule" ||
|
||||||
|
github.event_name == "workflow_dispatch" ||
|
||||||
github.event.action == 'opened' ||
|
github.event.action == 'opened' ||
|
||||||
github.event.action == 'synchronize' ||
|
github.event.action == 'synchronize' ||
|
||||||
(github.event.action == 'labeled' && contains(github.event.pull_request.labels.*.name, 're-record-tests'))
|
(github.event.action == 'labeled' && contains(github.event.pull_request.labels.*.name, 're-record-tests'))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue