-
Notifications
You must be signed in to change notification settings - Fork 40
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 add-autoware-component-interface-specs
- Loading branch information
Showing
72 changed files
with
6,169 additions
and
169 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,3 +1,6 @@ | ||
*:*/test/* | ||
|
||
missingInclude | ||
missingIncludeSystem | ||
unmatchedSuppression | ||
unusedFunction |
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,6 +1,8 @@ | ||
### Automatically generated from package.xml ### | ||
common/autoware_geography_utils/** [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] @autowarefoundation/autoware-core-global-codeowners | ||
common/autoware_node/** [email protected] @autowarefoundation/autoware-core-global-codeowners | ||
common/autoware_point_types/** [email protected] [email protected] [email protected] @autowarefoundation/autoware-core-global-codeowners | ||
demos/autoware_test_node/** [email protected] @autowarefoundation/autoware-core-global-codeowners | ||
|
||
### Copied from .github/CODEOWNERS-manual ### | ||
.github/** @autowarefoundation/autoware-core-global-codeowners |
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 @@ | ||
.github/** @autowarefoundation/autoware-core-global-codeowners |
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
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 }} |
Oops, something went wrong.