We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cc0248 commit 425bb23Copy full SHA for 425bb23
.github/workflows/clang-tidy-differential.yaml
@@ -65,6 +65,19 @@ jobs:
65
echo "::notice::BUILD_TYPE_CUDA_STATE=$build_type_cuda_state"
66
shell: bash
67
68
+ - name: Prepare build_depends.repos file (main branch)
69
+ if: ${{ github.event.pull_request.base.ref == 'main' }}
70
+ uses: ./.github/actions/combine-repos-action
71
+ with:
72
+ base_file: build_depends_humble.repos
73
+ overlay_file: build_depends_nightly.repos
74
+ output_file: build_depends.repos
75
+
76
+ - name: Prepare build_depends.repos file (humble branch)
77
+ if: ${{ github.event.pull_request.base.ref == 'humble' }}
78
+ run: cp build_depends_humble.repos build_depends.repos
79
+ shell: bash
80
81
- name: Run clang-tidy
82
if: ${{ steps.get-changed-files.outputs.changed-files != '' }}
83
uses: autowarefoundation/autoware-github-actions/clang-tidy@v1
0 commit comments