Skip to content

Commit

Permalink
Merge pull request #34 from RyosukeDTomita/documentation/branch-prote…
Browse files Browse the repository at this point in the history
…ctions

add how to use branch protections
  • Loading branch information
RyosukeDTomita authored Jun 17, 2024
2 parents 2dacfbc + dbac7dc commit 2ccd752
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions doc/github-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,25 @@ on:
---
## Branch Protectionsのルールを使って必ず成功してほしいjobを指定する
### Branch Protectionsとは
- GitHubのリポジトリの設定から編集可能。
- Branchのforce-pushを禁止する等ブランチ単位でルールを設定できる。
### Branch ProtectionsでPR前に成功してほしいCIを指定する
- `Require status checks to pass before merging`を有効にし,必要なjobを選択する。
- yamlでいうところのjobs配下の要素が指定できる。

```yaml
jobs:
frontend-jest: # ここが指定可能。
```

---

## CodeQLを使ってファイルを出力

### Advanced Security must be enabled for this repository to use code scanning 403: GitHub Advanced Security is not enabled
Expand Down

0 comments on commit 2ccd752

Please sign in to comment.