We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cecf20 commit 9225538Copy full SHA for 9225538
1 file changed
.github/workflows/ci_dependencies_from_source.yaml
@@ -1,11 +1,13 @@
1
name: Ubuntu CI
2
3
on:
4
- pull_request:
5
- push:
6
- branches:
7
- - 'sdf[1-9]?[0-9]'
8
- - 'main'
+ workflow_dispatch:
+ inputs:
+ vcs_repo_file_url:
+ description: URL to vcs repo file to import into colcon workspace
+ required: true
9
+ type: string
10
+ default: "${{ github.workspace }}/.github/ci/packages_up_to_sdformat.yaml"
11
12
jobs:
13
noble-ci:
@@ -21,7 +23,7 @@ jobs:
21
23
with:
22
24
package-name: sdformat
25
target-ros2-distro: kilted
- vcs-repo-file-url: "${{ github.workspace }}/.github/ci/packages_up_to_sdformat.yaml"
26
+ vcs-repo-file-url: "${{ inputs.vcs_repo_file_url }}"
27
colcon-defaults: |
28
{
29
"build": {
0 commit comments