diff --git a/.github/workflows/pr-validate.yml b/.github/workflows/pr-validate.yml new file mode 100644 index 000000000..c06be3585 --- /dev/null +++ b/.github/workflows/pr-validate.yml @@ -0,0 +1,16 @@ +name: "Validate PR" + +on: + pull_request: + +permissions: + pull-requests: read + +jobs: + main: + name: Validate PR title + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file