From feae91cc4d80d3f3f510cdc590c51e9c049f9af1 Mon Sep 17 00:00:00 2001 From: Pavel Tisnovsky Date: Mon, 30 Mar 2026 08:50:06 +0200 Subject: [PATCH 1/2] PR title checker config --- .github/pr-title-checker-config.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/pr-title-checker-config.json diff --git a/.github/pr-title-checker-config.json b/.github/pr-title-checker-config.json new file mode 100644 index 000000000..8c54c94be --- /dev/null +++ b/.github/pr-title-checker-config.json @@ -0,0 +1,14 @@ +{ + "LABEL": { + "name": "title needs formatting", + "color": "EEEEEE" + }, + "CHECKS": { + "prefixes": ["LCORE-"] + }, + "MESSAGES": { + "success": "All OK", + "failure": "Failing CI test", + "notice": "" + } +} From d0c8c9737bbafaaf07e8e9ca456e9f4576f3fda2 Mon Sep 17 00:00:00 2001 From: Pavel Tisnovsky Date: Mon, 30 Mar 2026 08:50:30 +0200 Subject: [PATCH 2/2] PR title checker GH action --- .github/workflows/pr-title-checker.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/pr-title-checker.yaml diff --git a/.github/workflows/pr-title-checker.yaml b/.github/workflows/pr-title-checker.yaml new file mode 100644 index 000000000..51537c48e --- /dev/null +++ b/.github/workflows/pr-title-checker.yaml @@ -0,0 +1,18 @@ +name: "PR Title Checker" +on: + pull_request_target: + types: + - opened + - edited + - synchronize + - labeled + - unlabeled +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: thehanimo/pr-title-checker@v1.4.3 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + pass_on_octokit_error: false + configuration_path: .github/pr-title-checker-config.json