mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-15 14:08:00 +00:00
fix: integration tests not triggering on PR open
I realized that when a new PR is opened, the integration tests aren't triggering (or aren't always?) since the replay logic was introduced amend the concurrency logic a bit to trigger on opened PRs Signed-off-by: Charlie Doern <cdoern@redhat.com>
This commit is contained in:
parent
3a574ef23c
commit
9b50ceb817
1 changed files with 2 additions and 4 deletions
6
.github/workflows/integration-tests.yml
vendored
6
.github/workflows/integration-tests.yml
vendored
|
@ -40,10 +40,8 @@ concurrency:
|
|||
# The "no-run" group ensures that irrelevant label events don't interfere with the real workflows.
|
||||
group: >-
|
||||
${{ github.workflow }}-${{ github.ref }}-${{
|
||||
(github.event.action == 'opened' ||
|
||||
github.event.action == 'synchronize' ||
|
||||
(github.event.action == 'labeled' && contains(github.event.pull_request.labels.*.name, 're-record-tests'))) &&
|
||||
(contains(github.event.pull_request.labels.*.name, 're-record-tests') && 'rerecord' || 'replay') ||
|
||||
(github.event.action == 'opened' || github.event.action == 'synchronize') && 'replay' ||
|
||||
(github.event.action == 'labeled' && contains(github.event.pull_request.labels.*.name, 're-record-tests')) && 'rerecord' ||
|
||||
'no-run'
|
||||
}}
|
||||
cancel-in-progress: true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue