-
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.
ci: replace reusable workflows with composite actions (#161)
* ci: replace reusable workflows with composite actions Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com> Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * fix style Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * cancel previous runs of build-and-test Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * replace trigger from label to comment Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * update mkdocs settings Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * update README.md for test Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * ci(pre-commit): autofix Co-authored-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
d6007c3
commit 3a6d162
Showing
9 changed files
with
95 additions
and
83 deletions.
There are no files selected for viewing
10 changes: 5 additions & 5 deletions
10
.github/workflows/build-and-test-pr-arm.yaml → .github/workflows/build-and-test-arm-pr.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
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,26 @@ | ||
name: deploy-docs | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- tier4/proposal | ||
paths: | ||
- "mkdocs.yaml" | ||
- "**/*.md" | ||
- "**/*.svg" | ||
- "**/*.png" | ||
- "**/*.jpg" | ||
issue_comment: | ||
types: | ||
- created | ||
|
||
jobs: | ||
deploy-docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Deploy docs | ||
if: ${{ github.event.push || contains(github.event.comment.body, '/docs') }} | ||
uses: autowarefoundation/autoware-github-actions/deploy-docs@tier4/proposal | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} |
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