diff --git a/.github/workflows/.tests.yml b/.github/workflows/.tests.yml index 7ce17f4d4..650d18806 100644 --- a/.github/workflows/.tests.yml +++ b/.github/workflows/.tests.yml @@ -83,7 +83,7 @@ jobs: # npx playwright test --project="${{ matrix.project }}" --reporter=html # - uses: actions/upload-artifact@v4 - # if: ${{ !cancelled() }} + # if: (! cancelled()) # name: upload results # with: # name: playwright-report-${{ matrix.project }} diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 1a206f299..b528eb29c 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -16,7 +16,7 @@ concurrency: jobs: # tests: # name: Tests -# if: ${{ ! github.event.pull_request.draft }} +# if: (! github.event.pull_request.draft) # runs-on: ubuntu-24.04 # timeout-minutes: 5 # services: @@ -60,7 +60,7 @@ jobs: # https://github.com/marketplace/actions/aqua-security-trivy trivy: name: Trivy Security Scan - if: ${{ ! github.event.pull_request.draft }} + if: (! github.event.pull_request.draft) runs-on: ubuntu-24.04 timeout-minutes: 5 steps: