diff options
author | AtlasLinden <114031241+AtlasLinden@users.noreply.github.com> | 2025-03-27 11:47:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-27 11:47:56 -0700 |
commit | 571e33cd5905d62ce210aba5ac1cb1aca4d56de5 (patch) | |
tree | 8fad1b9f08aab8d30a2a63835a12144e72bd257c /.github | |
parent | 7d58d46ec3664f391461a1dc27ea5608de7f5527 (diff) | |
parent | 51f5b853608a756ef9eb39f5bafd963d28e752d7 (diff) |
Merge pull request #3821 from secondlife/atlas-qaworkflow
Removed unnecessary comments in QA workflow file
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/qatest.yaml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/.github/workflows/qatest.yaml b/.github/workflows/qatest.yaml index 8709ca0cd4..533635c3f7 100644 --- a/.github/workflows/qatest.yaml +++ b/.github/workflows/qatest.yaml @@ -27,15 +27,11 @@ jobs: install-viewer-and-run-tests:
runs-on: [self-hosted, qa-machine]
- # Run test only on successful builds of develop or Second_Life_X branches
+ # Run test only on successful builds of Second_Life_X branches
if: >
github.event.workflow_run.conclusion == 'success' &&
(
startsWith(github.ref, 'refs/tags/Second_Life')
-
- # For now this will only run on Second_Life_X tagged builds
- # || startsWith(github.event.workflow_run.head_branch, 'release')
- # || github.event.workflow_run.head_branch == 'develop'
)
steps:
@@ -169,4 +165,4 @@ jobs: # uses: actions/upload-artifact@v3
# with:
# name: test-results
- # path: C:\viewer-sikulix-main\regressionTest\test_results.html
\ No newline at end of file + # path: C:\viewer-sikulix-main\regressionTest\test_results.html
|