diff --git a/.github/workflows/pull_request_lint.yml b/.github/workflows/pull_request_lint.yml new file mode 100644 index 0000000000..675021d3d4 --- /dev/null +++ b/.github/workflows/pull_request_lint.yml @@ -0,0 +1,17 @@ +name: Pull Request Lint + +on: + pull_request: + types: [opened, edited, reopened] + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number }} + cancel-in-progress: true + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: jef/conventional-commits-pr-action@v1 + with: + token: ${{ github.token }} \ No newline at end of file