Refine GitHub Actions workflow condition to remove tag check for test success

This commit is contained in:
Don-Swanson 2025-11-26 16:14:02 -06:00
parent 71a2c10e58
commit 20753224f3
No known key found for this signature in database
GPG key ID: C6A6ACD574A005E5

View file

@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Wait for tests to succeed
if: ${{ github.event.workflow_run.conclusion != 'success' && startsWith(github.ref, 'refs/tags') != true }}
if: ${{ github.event.workflow_run.conclusion != 'success' }}
run: exit 1
- name: checkout code
uses: actions/checkout@v4