fix GH action color escape
This commit is contained in:
parent
adef26a714
commit
68b5019a45
3
.github/workflows/build-qa-tag.yaml
vendored
3
.github/workflows/build-qa-tag.yaml
vendored
@ -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
|
||||
|
||||
6
.github/workflows/cleanup-qa-tag.yaml
vendored
6
.github/workflows/cleanup-qa-tag.yaml
vendored
@ -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:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user