ソースを参照

ci: use GitHub Action to validate semantic commits

tags/v0.10.11
Jérôme Deuchnord 2年前
committed by Jérôme Deuchnord
コミット
83d9cf70ac
1個のファイルの変更17行の追加0行の削除
  1. +17
    -0
      .github/workflows/semantic-pr.yml

+ 17
- 0
.github/workflows/semantic-pr.yml ファイルの表示

@@ -0,0 +1,17 @@
name: "Semantic Pull Request"

on:
pull_request:
types:
- opened
- edited
- synchronize

jobs:
main:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

読み込み中…
キャンセル
保存