-
Notifications
You must be signed in to change notification settings - Fork 675
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat-apply-autoware-prefix-for-simulator-lea…
…rning-based-vehicle-model
- Loading branch information
Showing
420 changed files
with
16,823 additions
and
2,706 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
### Automatically generated from package.xml ### | ||
common/autoware_adapi_specs/** [email protected] [email protected] | ||
common/autoware_auto_common/** [email protected] [email protected] [email protected] [email protected] | ||
common/autoware_component_interface_specs/** [email protected] [email protected] | ||
common/autoware_component_interface_specs_universe/** [email protected] [email protected] | ||
common/autoware_component_interface_tools/** [email protected] | ||
common/autoware_component_interface_utils/** [email protected] [email protected] | ||
common/autoware_fake_test_node/** [email protected] [email protected] [email protected] [email protected] | ||
|
@@ -51,7 +51,7 @@ evaluator/autoware_control_evaluator/** [email protected] kosuke.takeuchi@ | |
evaluator/autoware_planning_evaluator/** [email protected] [email protected] [email protected] | ||
evaluator/kinematic_evaluator/** [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] | ||
evaluator/localization_evaluator/** [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] | ||
evaluator/perception_online_evaluator/** [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] | ||
evaluator/autoware_perception_online_evaluator/** [email protected] [email protected] [email protected] [email protected] [email protected] yoshi.ri@tier4.jp junya.sasaki@tier4.jp | ||
evaluator/scenario_simulator_v2_adapter/** [email protected] [email protected] [email protected] [email protected] | ||
launch/tier4_autoware_api_launch/** [email protected] [email protected] | ||
launch/tier4_control_launch/** [email protected] [email protected] | ||
|
@@ -210,16 +210,16 @@ simulator/vehicle_door_simulator/** [email protected] | |
system/autoware_component_monitor/** [email protected] [email protected] [email protected] | ||
system/autoware_default_adapi/** [email protected] [email protected] [email protected] | ||
system/autoware_processing_time_checker/** [email protected] [email protected] | ||
system/bluetooth_monitor/** [email protected] | ||
system/autoware_bluetooth_monitor/** fumihito.ito@tier4.jp junya.sasaki@tier4.jp | ||
system/component_state_monitor/** [email protected] | ||
system/default_ad_api_helpers/ad_api_adaptors/** [email protected] [email protected] [email protected] | ||
system/default_ad_api_helpers/ad_api_visualizers/** [email protected] [email protected] [email protected] | ||
system/default_ad_api_helpers/automatic_pose_initializer/** [email protected] [email protected] [email protected] | ||
system/diagnostic_graph_aggregator/** [email protected] | ||
system/diagnostic_graph_utils/** [email protected] | ||
system/dummy_diag_publisher/** [email protected] [email protected] | ||
system/dummy_infrastructure/** [email protected] | ||
system/duplicated_node_checker/** [email protected] [email protected] [email protected] | ||
system/autoware_dummy_diag_publisher/** [email protected] [email protected] | ||
system/autoware_dummy_infrastructure/** [email protected] | ||
system/autoware_duplicated_node_checker/** [email protected] [email protected] uken.ryu@tier4.jp junya.sasaki@tier4.jp | ||
system/hazard_status_converter/** [email protected] | ||
system/mrm_comfortable_stop_operator/** [email protected] [email protected] | ||
system/mrm_emergency_stop_operator/** [email protected] [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: bump-version-pr | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version_part: | ||
description: Which part of the version number to bump? | ||
required: true | ||
default: minor | ||
type: choice | ||
options: | ||
- major | ||
- minor | ||
- patch | ||
|
||
jobs: | ||
bump-version-pr: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: humble | ||
fetch-depth: 0 | ||
|
||
- name: Generate token | ||
id: generate-token | ||
uses: actions/create-github-app-token@v1 | ||
with: | ||
app-id: ${{ secrets.APP_ID }} | ||
private-key: ${{ secrets.PRIVATE_KEY }} | ||
|
||
- name: Set git config | ||
uses: autowarefoundation/autoware-github-actions/set-git-config@v1 | ||
with: | ||
token: ${{ steps.generate-token.outputs.token }} | ||
|
||
- name: Setup Python 3.x | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
|
||
- name: Install dependencies | ||
run: pip3 install -U catkin_tools | ||
shell: bash | ||
|
||
- name: Bump version from humble branch | ||
id: bump-version-from-humble-branch | ||
run: | | ||
git checkout -b tmp/bot/bump_version_base | ||
git fetch origin main | ||
git merge origin/main | ||
catkin_generate_changelog -y | ||
git add * | ||
git commit -m "update CHANGELOG.rst" | ||
catkin_prepare_release -y --bump ${{ inputs.version_part }} --no-push | ||
version=$(git describe --tags) | ||
echo "version=${version}" >> $GITHUB_OUTPUT | ||
shell: bash | ||
|
||
- name: Create target branch | ||
run: | | ||
git checkout origin/main | ||
git checkout -b chore/bot/bump_version | ||
git merge tmp/bot/bump_version_base | ||
git push origin chore/bot/bump_version --force | ||
shell: bash | ||
|
||
- name: Create PR | ||
id: create-pr | ||
run: > | ||
gh | ||
pr | ||
create | ||
--base=main | ||
--body="Bump version to ${{ steps.bump-version-from-humble-branch.outputs.version }}" | ||
--title="chore: bump version to ${{ steps.bump-version-from-humble-branch.outputs.version }}" | ||
--head=chore/bot/bump_version | ||
env: | ||
GH_TOKEN: ${{ steps.generate-token.outputs.token }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...e_component_interface_specs/CHANGELOG.rst → ...nt_interface_specs_universe/CHANGELOG.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
..._component_interface_specs/CMakeLists.txt → ...t_interface_specs_universe/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...oware_component_interface_specs/README.md → ...ponent_interface_specs_universe/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# autoware_component_interface_specs | ||
# autoware_component_interface_specs_universe | ||
|
||
This package is a specification of component interfaces. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...are_component_interface_specs/package.xml → ...nent_interface_specs_universe/package.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>autoware_component_interface_specs</name> | ||
<name>autoware_component_interface_specs_universe</name> | ||
<version>0.40.0</version> | ||
<description>The autoware_component_interface_specs package</description> | ||
<description>The autoware_component_interface_specs_universe package</description> | ||
<maintainer email="[email protected]">Takagi, Isamu</maintainer> | ||
<maintainer email="[email protected]">Yukihiro Saito</maintainer> | ||
<license>Apache License 2.0</license> | ||
|
File renamed without changes.
Oops, something went wrong.