-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Masaya Kataoka <[email protected]>
- Loading branch information
1 parent
22a664d
commit e8ddb42
Showing
16 changed files
with
25 additions
and
88 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: DocumentationLinkCheck | ||
name: Documentation link check | ||
|
||
on: | ||
repository_dispatch: | ||
|
@@ -13,7 +13,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Link Checker | ||
- name: Checke documentation link | ||
id: lychee | ||
uses: lycheeverse/[email protected] | ||
with: | ||
|
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 @@ | ||
name: InterfaceUpdateNotification | ||
name: Interface update notification | ||
on: | ||
pull_request: | ||
branches: | ||
|
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 @@ | ||
name: LineLint | ||
name: Line lint | ||
on: | ||
workflow_dispatch: | ||
push: | ||
|
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 |
---|---|---|
|
@@ -55,19 +55,19 @@ jobs: | |
echo "old_version=$(catkin_package_version)" >> $GITHUB_OUTPUT | ||
- name: Merge branch | ||
run: git pull origin ${{ github.head_ref }} | ||
- name: bump patch version | ||
- name: Bump patch version | ||
if: (contains(github.event.pull_request.labels.*.name, 'bump patch')) | ||
run: | | ||
catkin_generate_changelog -y | ||
catkin_tag_changelog --bump patch | ||
catkin_package_version --bump patch | ||
- name: bump minor version | ||
- name: Bump minor version | ||
if: (contains(github.event.pull_request.labels.*.name, 'bump minor')) | ||
run: | | ||
catkin_generate_changelog -y | ||
catkin_tag_changelog --bump minor | ||
catkin_package_version --bump minor | ||
- name: bump major version | ||
- name: Bump major version | ||
if: (contains(github.event.pull_request.labels.*.name, 'bump major')) | ||
run: | | ||
catkin_generate_changelog -y | ||
|
@@ -77,7 +77,7 @@ jobs: | |
id: new_version | ||
run: | | ||
echo "new_version=$(catkin_package_version)" >> $GITHUB_OUTPUT | ||
- name: commit changes | ||
- name: Commit changes | ||
if: github.event.pull_request.merged == true | ||
run: | | ||
git add . | ||
|
@@ -107,7 +107,7 @@ jobs: | |
uses: mathiasvr/[email protected] | ||
with: | ||
run: cat release_description.txt | ||
- name: Create a gitHub release | ||
- name: Create a GitHub release | ||
if: github.event.pull_request.merged == true | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
|
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 @@ | ||
name: SimModelUpdateNotification | ||
name: Simulation Model Update Notification | ||
on: | ||
pull_request: | ||
paths: | ||
|
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 @@ | ||
name: SpellCheck | ||
name: Spell check | ||
|
||
on: | ||
workflow_dispatch: | ||
|
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 @@ | ||
name: SpellCheckAll | ||
name: Spell check all | ||
|
||
on: | ||
workflow_dispatch: | ||
|
This file was deleted.
Oops, something went wrong.
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 @@ | ||
name: ToolDispatch | ||
name: Tool dispatch | ||
on: | ||
pull_request: | ||
types: [labeled] | ||
|