From f042c3ac2eee1169d19ae650e278d4d5709ee48f Mon Sep 17 00:00:00 2001 From: Radu-Cristian Popa Date: Wed, 6 Dec 2023 08:40:34 +0200 Subject: [PATCH] chore: check for conventional commit PR title (#34) Add PR title check workflow --- .github/workflows/pr-title-check.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/pr-title-check.yml diff --git a/.github/workflows/pr-title-check.yml b/.github/workflows/pr-title-check.yml new file mode 100644 index 00000000..94ec0501 --- /dev/null +++ b/.github/workflows/pr-title-check.yml @@ -0,0 +1,14 @@ +name: Check PR title + +on: + pull_request: + branches: ["**"] + +jobs: + check-pr-title: + name: Check PR Title + runs-on: ubuntu-22.04 + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}