diff --git a/.github/workflows/semantic_pr.yml b/.github/workflows/semantic_pr.yml new file mode 100644 index 0000000000..304565706f --- /dev/null +++ b/.github/workflows/semantic_pr.yml @@ -0,0 +1,15 @@ +name: "Conventional Commit PR Message" +on: + pull_request: + types: + - opened + - edited + - synchronize + +jobs: + main: + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v1.1.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}