From 17dbf7626d377a9518d81aa9db02080e55d419c7 Mon Sep 17 00:00:00 2001 From: Tomasz Jakut Date: Tue, 30 Apr 2024 22:53:09 +0200 Subject: [PATCH] ci(prlinter): add PR title linting GHA (#313) --- .github/workflows/prLinter.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/prLinter.yml diff --git a/.github/workflows/prLinter.yml b/.github/workflows/prLinter.yml new file mode 100644 index 0000000..4a3d627 --- /dev/null +++ b/.github/workflows/prLinter.yml @@ -0,0 +1,11 @@ +name: Lint PR title +on: + pull_request: + types: [opened, reopened, edited, synchronize] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: comandeer/lint-pr-title@v1