Skip to content

Commit 30b1f1d

Browse files
authored
Merge branch 'main' into pre-commit-ci-update-config
2 parents 8e88317 + 6812822 commit 30b1f1d

19 files changed

Lines changed: 76 additions & 25 deletions

.github/workflows/github-release.yaml

Lines changed: 8 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@ name: github-release
66

77
on:
88
push:
9-
branches:
10-
- beta/v*
119
tags:
12-
- v*
10+
- "[0-9]+.[0-9]+.[0-9]+"
1311
workflow_dispatch:
1412
inputs:
15-
beta-branch-or-tag-name:
16-
description: The name of the beta branch or tag to release
13+
tag-name:
14+
description: The name of the tag to release
1715
type: string
1816
required: true
1917

@@ -25,36 +23,24 @@ jobs:
2523
id: set-tag-name
2624
run: |
2725
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
28-
REF_NAME="${{ github.event.inputs.beta-branch-or-tag-name }}"
26+
REF_NAME="${{ github.event.inputs.tag-name }}"
2927
else
3028
REF_NAME="${{ github.ref_name }}"
3129
fi
3230
33-
echo "ref-name=$REF_NAME" >> $GITHUB_OUTPUT
34-
echo "tag-name=${REF_NAME#beta/}" >> $GITHUB_OUTPUT
31+
echo "tag-name=$REF_NAME" >> $GITHUB_OUTPUT
3532
3633
- name: Check out repository
3734
uses: actions/checkout@v4
3835
with:
3936
fetch-depth: 0
40-
ref: ${{ steps.set-tag-name.outputs.ref-name }}
41-
42-
- name: Set target name for beta branches
43-
id: set-target-name
44-
run: |
45-
if [[ "${{ steps.set-tag-name.outputs.ref-name }}" =~ "beta/" ]]; then
46-
echo "target-name=${{ steps.set-tag-name.outputs.ref-name }}" >> $GITHUB_OUTPUT
47-
fi
48-
49-
- name: Create a local tag for beta branches
50-
run: |
51-
if [ "${{ steps.set-target-name.outputs.target-name }}" != "" ]; then
52-
git tag "${{ steps.set-tag-name.outputs.tag-name }}"
53-
fi
37+
ref: ${{ steps.set-tag-name.outputs.tag-name }}
5438

5539
- name: Run generate-changelog
5640
id: generate-changelog
5741
uses: autowarefoundation/autoware-github-actions/generate-changelog@v1
42+
with:
43+
git-cliff-args: --tag-pattern "^(\d+)\.(\d+)\.(\d+)$" --latest
5844

5945
- name: Select verb
6046
id: select-verb
@@ -74,7 +60,6 @@ jobs:
7460
run: |
7561
gh release ${{ steps.select-verb.outputs.verb }} "${{ steps.set-tag-name.outputs.tag-name }}" \
7662
--draft \
77-
--target "${{ steps.set-target-name.outputs.target-name }}" \
7863
--title "Release ${{ steps.set-tag-name.outputs.tag-name }}" \
7964
--notes "$NOTES"
8065
env:

.pre-commit-config-optional.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
# https://github.com/autowarefoundation/sync-file-templates
33
# To make changes, update the source repository and follow the guidelines in its README.
44

5+
# https://pre-commit.ci/#configuration
6+
ci:
7+
autofix_commit_msg: "style(pre-commit-optional): autofix"
8+
# we already have our own daily update mechanism, we set this to quarterly
9+
autoupdate_schedule: quarterly
10+
autoupdate_commit_msg: "ci(pre-commit-optional): quarterly autoupdate"
11+
512
repos:
613
- repo: https://github.com/tcort/markdown-link-check
714
rev: v3.12.2

autoware_adapi_v1_msgs/CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
Changelog for package autoware_adapi_v1_msgs
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
1.7.0 (2025-02-18)
6+
------------------
7+
* feat: drop route following check option (`#71 <https://github.com/autowarefoundation/autoware_adapi_msgs/issues/71>`_)
8+
* fix(autoware_adapi_msgs): fix links to issues in CHANGELOG.rst files (`#72 <https://github.com/autowarefoundation/autoware_adapi_msgs/issues/72>`_)
9+
* feat(planning): add new planning behavior (adaptive-cruise) (`#67 <https://github.com/autowarefoundation/autoware_adapi_msgs/issues/67>`_)
10+
* feat(autoware_adapi_v1_msgs): add new planning behavior "run-out" (`#65 <https://github.com/autowarefoundation/autoware_adapi_msgs/issues/65>`_)
11+
* feat: update v1.6.0 (`#63 <https://github.com/autowarefoundation/autoware_adapi_msgs/issues/63>`_)
12+
* feat(autoware_adapi_v1_msgs): add route following check option (`#61 <https://github.com/autowarefoundation/autoware_adapi_msgs/issues/61>`_)
13+
* Contributors: Esteve Fernandez, Kyoichi Sugahara, Satoshi OTA, Takagi, Isamu
14+
515
1.3.0 (2024-07-03)
616
------------------
717
* feat(autoware_adapi_v1_msgs): remove energy status (`#58 <https://github.com/youtalk/autoware_adapi_msgs/issues/58>`_)

autoware_adapi_v1_msgs/CMakeLists.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@ rosidl_generate_interfaces(${PROJECT_NAME}
88
common/msg/ResponseStatus.msg
99
localization/msg/LocalizationInitializationState.msg
1010
localization/srv/InitializeLocalization.srv
11+
manual/msg/PedalsCommand.msg
12+
manual/msg/AccelerationCommand.msg
13+
manual/msg/VelocityCommand.msg
14+
manual/msg/SteeringCommand.msg
15+
manual/msg/GearCommand.msg
16+
manual/msg/TurnIndicatorsCommand.msg
17+
manual/msg/HazardLightsCommand.msg
18+
manual/msg/ManualControlMode.msg
19+
manual/msg/ManualControlModeStatus.msg
20+
manual/msg/ManualOperatorStatus.msg
21+
manual/srv/ListManualControlMode.srv
22+
manual/srv/SelectManualControlMode.srv
1123
routing/msg/RouteState.msg
1224
routing/msg/Route.msg
1325
routing/msg/RouteData.msg
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
builtin_interfaces/Time stamp
2+
float32 acceleration
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
builtin_interfaces/Time stamp
2+
autoware_adapi_v1_msgs/Gear command
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
builtin_interfaces/Time stamp
2+
autoware_adapi_v1_msgs/HazardLights command
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
uint8 DISABLED = 1
2+
uint8 PEDALS = 2
3+
uint8 ACCELERATION = 3
4+
uint8 VELOCITY = 4
5+
6+
uint8 mode
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
builtin_interfaces/Time stamp
2+
autoware_adapi_v1_msgs/ManualControlMode mode
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
builtin_interfaces/Time stamp
2+
bool ready

0 commit comments

Comments
 (0)