Skip to content

Commit d5109a9

Browse files
authored
Enable Humble Tutorial (#373) (#374)
1 parent 5bb1f15 commit d5109a9

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Overview of your issue here.
44

55
### Your environment
6-
* ROS Distro: [Dashing|Eloquent|Foxy|Galactic|Rolling]
7-
* OS Version: e.g. Ubuntu 20.04
6+
* ROS Distro: [Foxy|Galactic|Humble|Rolling]
7+
* OS Version: e.g. Ubuntu 22.04
88
* Source or Binary build?
99
* If binary, which release version?
1010
* If source, which git commit or tag?

.github/mergify.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
pull_request_rules:
2+
- name: backport to humble at reviewers discretion
3+
conditions:
4+
- base=main
5+
- "label=backport-humble"
6+
actions:
7+
backport:
8+
branches:
9+
- humble
10+
211
- name: backport to galactic at reviewers discretion
312
conditions:
413
- base=main

conf.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,16 +126,17 @@
126126

127127
# smv_tag_whitelist = None
128128

129-
smv_branch_whitelist = r"^(main|galactic|foxy)$"
129+
smv_branch_whitelist = r"^(main|humble|galactic|foxy)$"
130130

131-
smv_released_pattern = r"^refs/(heads|remotes/[^/]+)/(foxy|galactic).*$"
131+
smv_released_pattern = r"^refs/(heads|remotes/[^/]+)/(foxy|galactic|humble).*$"
132132
smv_remote_whitelist = r"^(origin)$"
133-
smv_latest_version = "galactic"
133+
smv_latest_version = "humble"
134134
smv_eol_versions = []
135135

136136
distro_full_names = {
137137
"foxy": "Foxy Fitzroy",
138138
"galactic": "Galactic Geochelone",
139+
"humble": "Humble Hawksbill",
139140
"rolling": "Rolling Ridley",
140141
}
141142

@@ -409,6 +410,7 @@ def smv_rewrite_configs(app, config):
409410
if app.config.smv_current_version != "":
410411
branch_distro = {
411412
"main": "rolling",
413+
"humble": "humble",
412414
"galactic": "galactic",
413415
"foxy": "foxy",
414416
}

0 commit comments

Comments
 (0)