Skip to content

Commit 68cc6e6

Browse files
committed
Update link
1 parent 79eb785 commit 68cc6e6

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Gitbook Staging Branch Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- "staging"
7+
8+
jobs:
9+
gitbook-generation:
10+
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
book: [Home, Getting-Started-with-InnerSource, Understanding-the-InnerSource-Checklist]
14+
steps:
15+
- uses: actions/checkout@v3
16+
with:
17+
ref: staging-${{ matrix.book }}
18+
- name: Merge branch into the book's branch
19+
uses: mtanzi/action-automerge@v1
20+
with:
21+
github_token: ${{ github.token }}
22+
source: 'staging'
23+
target: staging-${{ matrix.book }}
24+
- name: Copy .gitbook.yml to root
25+
run: cp books/${{ matrix.book }}/.gitbook.yaml .
26+
- name: Commit updated files for the book
27+
uses: stefanzweifel/git-auto-commit-action@v4
28+
with:
29+
commit_message: Writing updated files for the book
30+
branch: staging-${{ matrix.book }}

books/Understanding-the-InnerSource-Checklist/5-creating-good-house-rules-for-guests-writing-contributing-agreements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<!-- 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. -->
2121

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

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

0 commit comments

Comments
 (0)