Skip to content

Commit

Permalink
Update link
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhattor committed Jun 18, 2023
1 parent 79eb785 commit 68cc6e6
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions .github/workflows/gitbook-staging-branch-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Gitbook Staging Branch Deploy

on:
push:
branches:
- "staging"

jobs:
gitbook-generation:
runs-on: ubuntu-latest
strategy:
matrix:
book: [Home, Getting-Started-with-InnerSource, Understanding-the-InnerSource-Checklist]
steps:
- uses: actions/checkout@v3
with:
ref: staging-${{ matrix.book }}
- name: Merge branch into the book's branch
uses: mtanzi/action-automerge@v1
with:
github_token: ${{ github.token }}
source: 'staging'
target: staging-${{ matrix.book }}
- name: Copy .gitbook.yml to root
run: cp books/${{ matrix.book }}/.gitbook.yaml .
- name: Commit updated files for the book
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Writing updated files for the book
branch: staging-${{ matrix.book }}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<!-- TCs cannot be forced to accept and take ownership of broken code, code without proper tests, undocumented code, or even code that doesn’t meet their style standards. Contributing agreements are a way to formalize the responsibilities of the developers on the originating side of the code. -->

## コントリビューション協定とは何か<a href="#what-is-contribution-agreement" id="#what-is-contribution-agreement" />
## コントリビューション協定とは何か<a href="#what-is-contribution-agreement" id="#what-is-contribution-agreement" ></a>

トラステッドコミッターは、_コントリビューション協定_ を記述して所有します。
コントリビューション協定があることでハウスルールは明確になり、コードによるコントリビューションをトラステッドコミッターが受け入れるために必要なことをコントリビューターに知らせることができます。
Expand Down

0 comments on commit 68cc6e6

Please sign in to comment.