diff options
author | AtlasLinden <114031241+AtlasLinden@users.noreply.github.com> | 2025-03-27 15:28:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-27 15:28:15 -0700 |
commit | 0a39fe8dc9c5f3c24392f3f5cfb385379f70da03 (patch) | |
tree | aff773be5c3f884b52cfbb8e190568afb673eaac /.github/workflows | |
parent | 571e33cd5905d62ce210aba5ac1cb1aca4d56de5 (diff) |
Allow QA workflow to run on Second_Life_X branches
Using the echos from the last run, it appears that the tagged builds have Workflow Head Branch = Second_Life_X.
Edit made so the file looks for this rather than what was there previously.
Diffstat (limited to '.github/workflows')
-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:
|