fix GH action color escape

This commit is contained in:
Timothy Carambat 2026-02-10 09:17:30 -08:00
parent adef26a714
commit 68b5019a45
2 changed files with 5 additions and 4 deletions

View File

@ -29,7 +29,8 @@ jobs:
name: Build and push QA image for PR
runs-on: ubuntu-22.04-arm
# Run when labeled with "PR: Ready for QA"
if: contains(github.event.pull_request.labels.*.name, 'PR: Ready for QA')
if: >-
${{ contains(github.event.pull_request.labels.*.name, 'PR: Ready for QA') }}
permissions:
packages: write
contents: read

View File

@ -9,9 +9,9 @@ jobs:
cleanup:
name: Delete QA image tag from GHCR
runs-on: ubuntu-latest
if: |
(github.event.action == 'closed' && contains(github.event.pull_request.labels.*.name, 'PR: Ready for QA')) ||
(github.event.action == 'unlabeled' && github.event.label.name == 'PR: Ready for QA')
if: >-
${{ (github.event.action == 'closed' && contains(github.event.pull_request.labels.*.name, 'PR: Ready for QA')) ||
(github.event.action == 'unlabeled' && github.event.label.name == 'PR: Ready for QA') }}
permissions:
packages: write
steps: