From b75268a47bcccb74064be7e7cbda1ca820ca5a74 Mon Sep 17 00:00:00 2001 From: VISHAL KUMAR Date: Fri, 16 May 2025 19:33:14 +0530 Subject: [PATCH 1/2] ci: Add email checker Integrate the Qualcomm Commit Emails Check Action to validate the commit's author and committer email addresses - https://github.com/qualcomm/commit-emails-check-action Signed-off-by: VISHAL KUMAR --- .github/workflows/email_checker.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/email_checker.yml diff --git a/.github/workflows/email_checker.yml b/.github/workflows/email_checker.yml new file mode 100644 index 0000000000000..8f7cff5953031 --- /dev/null +++ b/.github/workflows/email_checker.yml @@ -0,0 +1,10 @@ +name: PR email addresses checker + +on: pull_request + +jobs: + pr-check-emails: + runs-on: ubuntu-latest + steps: + - name: Check PR emails + uses: qualcomm/commit-emails-check-action@main From 69413bbcebd9b0ed7c4fe00de49b3443df72f4a7 Mon Sep 17 00:00:00 2001 From: VISHAL KUMAR Date: Wed, 21 May 2025 21:11:24 +0530 Subject: [PATCH 2/2] Enable email checker on qcom-next-staging branch Need email checker on qcom-next-staging branch only Co-authored-by: Nasser Grainawi Signed-off-by: VISHAL KUMAR --- .github/workflows/email_checker.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/email_checker.yml b/.github/workflows/email_checker.yml index 8f7cff5953031..dcbb8ad9e098a 100644 --- a/.github/workflows/email_checker.yml +++ b/.github/workflows/email_checker.yml @@ -1,6 +1,8 @@ name: PR email addresses checker -on: pull_request +on: + pull_request: + branches: [ qcom-next-staging ] jobs: pr-check-emails: