-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from tier4/tier4/universe
merge main for galactic release
- Loading branch information
Showing
36 changed files
with
6,754 additions
and
235 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,55 +1,42 @@ | ||
## PR Type | ||
|
||
<!-- Select one and remove others. If an appropriate one is not listed, please write by yourself. --> | ||
|
||
- New Feature | ||
- Improvement | ||
- Bug Fix | ||
|
||
## Related Links | ||
|
||
<!-- Please write related links to GitHub/Jira/Slack/etc. --> | ||
|
||
## Description | ||
|
||
<!-- Describe what this PR changes. --> | ||
<!-- Write a brief description of this PR. --> | ||
|
||
## Related links | ||
|
||
## Review Procedure | ||
<!-- Write the links related to this PR. --> | ||
|
||
<!-- Explain how to review this PR. --> | ||
## Tests performed | ||
|
||
## Remarks | ||
<!-- Describe how you have tested this PR. --> | ||
|
||
<!-- Write remarks as you like if you need them. --> | ||
## Notes for reviewers | ||
|
||
## Pre-Review Checklist for the PR Author | ||
<!-- Write additional information if necessary. It should be written if there are related PRs that should be merged at the same time. --> | ||
|
||
**PR Author should check the checkboxes below when creating the PR.** | ||
## Pre-review checklist for the PR author | ||
|
||
- [ ] Code follows [coding guidelines][coding-guidelines] | ||
- [ ] Assign PR to reviewer | ||
The PR author **must** check the checkboxes below when creating the PR. | ||
|
||
## Checklist for the PR Reviewer | ||
- [ ] I've confirmed the [contribution guidelines]. | ||
- [ ] The PR follows the [pull request guidelines]. | ||
|
||
**Reviewers should check the checkboxes below before approval.** | ||
## In-review checklist for the PR reviewers | ||
|
||
- [ ] Commits are properly organized and messages are according to the guideline | ||
- [ ] Code follows [coding guidelines][coding-guidelines] | ||
- [ ] (Optional) Unit tests have been written for new behavior | ||
- [ ] PR title describes the changes | ||
The PR reviewers **must** check the checkboxes below before approval. | ||
|
||
## Post-Review Checklist for the PR Author | ||
- [ ] The PR follows the [pull request guidelines]. | ||
- [ ] The PR has been properly tested. | ||
- [ ] The PR has been reviewed by the code owners. | ||
|
||
**PR Author should check the checkboxes below before merging.** | ||
## Post-review checklist for the PR author | ||
|
||
- [ ] All open points are addressed and tracked via issues or tickets | ||
- [ ] Write [release notes][release-notes] | ||
The PR author **must** check the checkboxes below before merging. | ||
|
||
## CI Checks | ||
- [ ] There are no open discussions or they are tracked via tickets. | ||
- [ ] The PR is ready for merge. | ||
|
||
- **Build and test for PR**: Required to pass before the merge. | ||
- **Check spelling**: NOT required to pass before the merge. It is up to the reviewer(s). See [here][spell-check-dict] if you want to add some words to the spell check dictionary. | ||
After all checkboxes are checked, anyone who has write access can merge the PR. | ||
|
||
[coding-guidelines]: https://tier4.atlassian.net/wiki/spaces/AIP/pages/1194394777/T4 | ||
[release-notes]: https://tier4.atlassian.net/l/c/X1p69s6B | ||
[spell-check-dict]: https://github.com/tier4/autoware-spell-check-dict#how-to-contribute | ||
[contribution guidelines]: https://autowarefoundation.github.io/autoware-documentation/main/contributing/ | ||
[pull request guidelines]: https://autowarefoundation.github.io/autoware-documentation/main/contributing/pull-request-guidelines/ |
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,27 @@ | ||
name: sync-tier4-universe-to-humble | ||
on: | ||
schedule: | ||
- cron: 0 0 * * * | ||
workflow_dispatch: | ||
|
||
jobs: | ||
sync-branches: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Generate token | ||
id: generate-token | ||
uses: tibdex/github-app-token@v1 | ||
with: | ||
app_id: ${{ secrets.APP_ID }} | ||
private_key: ${{ secrets.PRIVATE_KEY }} | ||
|
||
- name: Run sync-branches | ||
uses: autowarefoundation/autoware-github-actions/sync-branches@v1 | ||
with: | ||
token: ${{ steps.generate-token.outputs.token }} | ||
base-branch: humble | ||
sync-target-repository: git@github.com:tier4/CalibrationTools.git | ||
sync-target-branch: tier4/universe | ||
sync-branch: sync-tier4-universe-to-humble | ||
pr-title: "chore: sync tier4/universe to humble" | ||
auto-merge-method: merge |
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
Empty file.
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
...evaluator/config/deviation_evaluator.yaml → ...tor/config/deviation_evaluator.param.yaml
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,4 +1,4 @@ | ||
parameter_estimator: | ||
/**: | ||
ros__parameters: | ||
# Parameters that you want to evaluate | ||
stddev_vx: 0.3 # [m/s] | ||
|
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
Oops, something went wrong.