Skip to content

Commit f217483

Browse files
committed
specify which workflow in the header
Signed-off-by: Taeseung Sohn <taeseung.sohn@tier4.jp>
1 parent 0b2c1d6 commit f217483

38 files changed

Lines changed: 38 additions & 38 deletions

File tree

.github/scripts/sync_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1042,7 +1042,7 @@ def build_variant_header(source_url: str) -> str:
10421042
returns a header string containing "# Source: https://github.com/org/repo/blob/abc/config/file.yaml"
10431043
"""
10441044
lines = [
1045-
"# This file is managed by workflow.",
1045+
"# This file is managed by sync-params workflow.",
10461046
f"# Keys marked with '{OVERRIDE_MARKER}' or '# {{OVERRIDE: reason}}' are persisted as variant overrides.",
10471047
"# 'reason' can be any single-line text without braces.",
10481048
f"# To keep local changes, annotate fields with '# {OVERRIDE_MARKER}' or '# {{OVERRIDE: reason}}'.",

.github/scripts/test_sync_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ def test_variant_header_mentions_source(self) -> None:
288288
header = build_variant_header(
289289
source_url="https://github.com/org/repo/blob/abc123/path/to/file.yaml",
290290
)
291-
self.assertIn("managed by workflow", header)
291+
self.assertIn("managed by sync-params workflow", header)
292292
self.assertIn("https://github.com/org/repo/blob/abc123/path/to/file.yaml", header)
293293

294294
def test_build_embedded_original_section(self) -> None:

autoware_launch/config/perception/object_recognition/detection/camera_vru_detection/near_range_camera_vru_detector.param.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is managed by workflow.
1+
# This file is managed by sync-params workflow.
22
# Keys marked with '{OVERRIDE}' or '# {OVERRIDE: reason}' are persisted as variant overrides.
33
# 'reason' can be any single-line text without braces.
44
# To keep local changes, annotate fields with '# {OVERRIDE}' or '# {OVERRIDE: reason}'.

autoware_launch/config/perception/object_recognition/detection/clustering/euclidean_cluster.param.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is managed by workflow.
1+
# This file is managed by sync-params workflow.
22
# Keys marked with '{OVERRIDE}' or '# {OVERRIDE: reason}' are persisted as variant overrides.
33
# 'reason' can be any single-line text without braces.
44
# To keep local changes, annotate fields with '# {OVERRIDE}' or '# {OVERRIDE: reason}'.

autoware_launch/config/perception/object_recognition/detection/detected_object_validation/obstacle_pointcloud_based_validator.param.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is managed by workflow.
1+
# This file is managed by sync-params workflow.
22
# Keys marked with '{OVERRIDE}' or '# {OVERRIDE: reason}' are persisted as variant overrides.
33
# 'reason' can be any single-line text without braces.
44
# To keep local changes, annotate fields with '# {OVERRIDE}' or '# {OVERRIDE: reason}'.

autoware_launch/config/perception/object_recognition/detection/detected_object_validation/occupancy_grid_based_validator.param.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is managed by workflow.
1+
# This file is managed by sync-params workflow.
22
# Keys marked with '{OVERRIDE}' or '# {OVERRIDE: reason}' are persisted as variant overrides.
33
# 'reason' can be any single-line text without braces.
44
# To keep local changes, annotate fields with '# {OVERRIDE}' or '# {OVERRIDE: reason}'.

autoware_launch/config/perception/object_recognition/detection/detection_by_tracker/detection_by_tracker.param.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is managed by workflow.
1+
# This file is managed by sync-params workflow.
22
# Keys marked with '{OVERRIDE}' or '# {OVERRIDE: reason}' are persisted as variant overrides.
33
# 'reason' can be any single-line text without braces.
44
# To keep local changes, annotate fields with '# {OVERRIDE}' or '# {OVERRIDE: reason}'.

autoware_launch/config/perception/object_recognition/detection/image_projection_based_fusion/fusion_common.param.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is managed by workflow.
1+
# This file is managed by sync-params workflow.
22
# Keys marked with '{OVERRIDE}' or '# {OVERRIDE: reason}' are persisted as variant overrides.
33
# 'reason' can be any single-line text without braces.
44
# To keep local changes, annotate fields with '# {OVERRIDE}' or '# {OVERRIDE: reason}'.

autoware_launch/config/perception/object_recognition/detection/image_projection_based_fusion/pointpainting_common.param.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is managed by workflow.
1+
# This file is managed by sync-params workflow.
22
# Keys marked with '{OVERRIDE}' or '# {OVERRIDE: reason}' are persisted as variant overrides.
33
# 'reason' can be any single-line text without braces.
44
# To keep local changes, annotate fields with '# {OVERRIDE}' or '# {OVERRIDE: reason}'.

autoware_launch/config/perception/object_recognition/detection/image_projection_based_fusion/roi_cluster_fusion.param.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is managed by workflow.
1+
# This file is managed by sync-params workflow.
22
# Keys marked with '{OVERRIDE}' or '# {OVERRIDE: reason}' are persisted as variant overrides.
33
# 'reason' can be any single-line text without braces.
44
# To keep local changes, annotate fields with '# {OVERRIDE}' or '# {OVERRIDE: reason}'.

0 commit comments

Comments
 (0)