diff options
author | AtlasLinden <114031241+AtlasLinden@users.noreply.github.com> | 2025-03-28 07:31:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-28 07:31:55 -0700 |
commit | c555d234f1bbd1d82f7764c3fd8bf7a13821bb1d (patch) | |
tree | aff773be5c3f884b52cfbb8e190568afb673eaac /.github | |
parent | 571e33cd5905d62ce210aba5ac1cb1aca4d56de5 (diff) | |
parent | 0a39fe8dc9c5f3c24392f3f5cfb385379f70da03 (diff) |
Merge pull request #3832 from secondlife/atlas-qaworkflow
Allow QA workflow to run on Second_Life_X branches
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/qatest.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/qatest.yaml b/.github/workflows/qatest.yaml index 533635c3f7..7f3a5242e9 100644 --- a/.github/workflows/qatest.yaml +++ b/.github/workflows/qatest.yaml @@ -31,7 +31,7 @@ jobs: if: >
github.event.workflow_run.conclusion == 'success' &&
(
- startsWith(github.ref, 'refs/tags/Second_Life')
+ startsWith(github.event.workflow_run.head_branch, 'Second_Life')
)
steps:
|