From 85d5cf391883edf9d125189365680420ab50df2f Mon Sep 17 00:00:00 2001 From: Fadi George Date: Wed, 29 Oct 2025 16:49:44 -0700 Subject: [PATCH] add lint pr title workflow --- .github/workflows/lint-pr-title.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/lint-pr-title.yml diff --git a/.github/workflows/lint-pr-title.yml b/.github/workflows/lint-pr-title.yml new file mode 100644 index 00000000..c872dd74 --- /dev/null +++ b/.github/workflows/lint-pr-title.yml @@ -0,0 +1,11 @@ +# Checks if the PR title follows semantic commit message conventions +name: Lint PR + +on: + pull_request_target: + types: [opened, edited, reopened] + +jobs: + lint-pr-title: + uses: OneSignal/sdk-actions/.github/workflows/lint-pr-title.yml@main + secrets: inherit