Entity-to-entity distance implementations with freespace flag is true, differ from OpenSCENARIO standard #130
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 is automatically deployed from https://github.com/at-wat/.rospkg-assets. | |
# Please don't directly edit; update at-wat/.rospkg-assets instead. | |
name: Release | |
on: | |
issues: | |
types: [opened, edited] | |
jobs: | |
Release: | |
runs-on: ubuntu-latest | |
if: startsWith(github.event.issue.title, 'Release ') | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: create release | |
id: create_release | |
uses: at-wat/catkin-release-action@v1 | |
with: | |
issue_title: ${{ github.event.issue.title }} | |
git_user: Masaya Kataoka | |
git_email: [email protected] | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: open pull-request | |
uses: repo-sync/pull-request@v2 | |
with: | |
source_branch: ${{ steps.create_release.outputs.created_branch }} | |
destination_branch: master | |
pr_title: Release ${{ steps.create_release.outputs.version}} | |
pr_body: close \#${{ github.event.issue.number }} | |
pr_assignee: ${{ github.actor }} | |
github_token: ${{ secrets.BLOOM_GITHUB_TOKEN }} |