From f6b9c5c73d444afaf8c36d4e35ba173726c0bcb4 Mon Sep 17 00:00:00 2001 From: Nathan Klick Date: Wed, 15 Nov 2023 09:42:48 -0600 Subject: [PATCH] chore: enable PR title checks Signed-off-by: Nathan Klick --- .github/workflows/flow-pull-request-checks.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/flow-pull-request-checks.yaml b/.github/workflows/flow-pull-request-checks.yaml index 2b703ca39..dddbb8ec1 100644 --- a/.github/workflows/flow-pull-request-checks.yaml +++ b/.github/workflows/flow-pull-request-checks.yaml @@ -94,3 +94,14 @@ jobs: enable-snyk-scan: true secrets: snyk-token: ${{ secrets.SNYK_TOKEN }} + + pr-title-check: + name: PR Title Check + runs-on: [self-hosted, Linux, medium, ephemeral] + permissions: + statuses: write + steps: + - name: Check PR Title + uses: aslafy-z/conventional-pr-title-action@2ce59b07f86bd51b521dd088f0acfb0d7fdac55e # v3.1.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}