diff --git a/.github/workflows/build-and-test-differential.yaml b/.github/workflows/build-and-test-differential.yaml index dc6658df..6da7cc76 100644 --- a/.github/workflows/build-and-test-differential.yaml +++ b/.github/workflows/build-and-test-differential.yaml @@ -5,17 +5,18 @@ on: types: - opened - synchronize + - reopened - labeled jobs: - prevent-no-label-execution-build-and-test-differential: - uses: autowarefoundation/autoware-github-actions/.github/workflows/prevent-no-label-execution.yaml@v1 + make-sure-label-is-present-build-and-test-differential: + uses: autowarefoundation/autoware-github-actions/.github/workflows/make-sure-label-is-present.yaml@v-multi-label with: label: tag:run-build-and-test-differential build-and-test-differential: - needs: prevent-no-label-execution-build-and-test-differential - if: ${{ needs.prevent-no-label-execution-build-and-test-differential.outputs.run == 'true' }} + needs: make-sure-label-is-present-build-and-test-differential + if: ${{ needs.make-sure-label-is-present-build-and-test-differential.outputs.result == 'true' }} runs-on: ubuntu-latest strategy: fail-fast: false diff --git a/.github/workflows/clang-tidy-differential.yaml b/.github/workflows/clang-tidy-differential.yaml index 83a5411a..876ebd2c 100644 --- a/.github/workflows/clang-tidy-differential.yaml +++ b/.github/workflows/clang-tidy-differential.yaml @@ -5,17 +5,18 @@ on: types: - opened - synchronize + - reopened - labeled jobs: - prevent-no-label-execution-clang-tidy-differential: - uses: autowarefoundation/autoware-github-actions/.github/workflows/prevent-no-label-execution.yaml@v1 + make-sure-label-is-present-clang-tidy-differential: + uses: autowarefoundation/autoware-github-actions/.github/workflows/make-sure-label-is-present.yaml@v-multi-label with: label: tag:run-clang-tidy-differential clang-tidy-differential: - needs: prevent-no-label-execution-clang-tidy-differential - if: ${{ needs.prevent-no-label-execution-clang-tidy-differential.outputs.run == 'true' }} + needs: make-sure-label-is-present-clang-tidy-differential + if: ${{ needs.make-sure-label-is-present-clang-tidy-differential.outputs.result == 'true' }} runs-on: ubuntu-latest container: ros:humble steps: