diff --git a/.github/workflows/validate-pr-title.yml b/.github/workflows/validate-pr-title.yml new file mode 100644 index 0000000..104e2df --- /dev/null +++ b/.github/workflows/validate-pr-title.yml @@ -0,0 +1,22 @@ +name: Validate PR title + +on: + pull_request: + branches: + - main + types: + - opened + - edited + - reopened + - synchronize + +jobs: + validate-pr-title: + runs-on: ubuntu-latest + permissions: + pull-requests: read + + steps: + - uses: amannn/action-semantic-pull-request@v6 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file