Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Ryohsuke Mitsudome <[email protected]>
  • Loading branch information
mitsudome-r committed Dec 24, 2024
1 parent 557b6f5 commit ff92a66
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test-differential.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ on:
default: humble
required: false
type: string
skip:
default: false
run-condition:
default: true
required: false
type: boolean
container-suffix:
Expand All @@ -32,7 +32,7 @@ env:

jobs:
build-and-test-differential:
if: ${{ inputs.skip }}
if: ${{ run-condition }}
runs-on: ${{ inputs.runner }}
container: ${{ inputs.container }}${{ inputs.container-suffix }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-test-tidy-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
with:
container: ghcr.io/autowarefoundation/autoware:universe-devel
container-suffix: -cuda
skip: ${{ needs.check-if-cuda-job-is-needed.outputs.cuda_job_is_needed == 'false' }}
skip: ${{ needs.check-if-cuda-job-is-needed.outputs.cuda_job_is_needed == 'true' }}
secrets:
codecov-token: ${{ secrets.CODECOV_TOKEN }}

Expand Down

0 comments on commit ff92a66

Please sign in to comment.