From 0fabb196d69714cb8a6d3d118d64b12d8d10129c Mon Sep 17 00:00:00 2001 From: Grieve Date: Thu, 21 Nov 2024 17:22:31 +0800 Subject: [PATCH] ci(maven-test): fix condition (#935) --- .github/workflows/maven-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven-tests.yml b/.github/workflows/maven-tests.yml index a5dad947b..a36de39f0 100644 --- a/.github/workflows/maven-tests.yml +++ b/.github/workflows/maven-tests.yml @@ -17,7 +17,7 @@ concurrency: jobs: maven-tests: runs-on: ubuntu-latest - if: ${{ github.event.label.name == 'v1-engine-changed' }} + if: contains(github.event.pull_request.labels.*.name, 'v1-engine-changed') steps: - uses: actions/checkout@v4 - name: Set up JDK 21