From 73730ee6495382cd66a6542bf1e650ff8da72719 Mon Sep 17 00:00:00 2001 From: bunnam988 <107185904+bunnam988@users.noreply.github.com> Date: Wed, 15 Jul 2026 11:47:19 +0530 Subject: [PATCH 1/2] RDKB-66032 : Add PR Format Check workflow (#22) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Adds a caller workflow that runs the shared PR format check from `rdkcentral/build_tools_workflows`. ## What it does Automatically checks every new/edited PR (including fork PRs) for: - Title format: `TICKET-123 : description` (multiple tickets supported) - Required description fields: Reason for change, Test Procedure, Risks, Priority Fails the check and posts a reminder comment if format is incorrect. Deletes the comment automatically when fixed. ## Files changed - `.github/workflows/pr-lint.yml` (9 lines — caller only, no logic) --- .github/workflows/pr-lint.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/pr-lint.yml diff --git a/.github/workflows/pr-lint.yml b/.github/workflows/pr-lint.yml new file mode 100644 index 0000000..7b2c503 --- /dev/null +++ b/.github/workflows/pr-lint.yml @@ -0,0 +1,18 @@ +name: PR Format Check + +on: + pull_request_target: + types: [opened, edited, synchronize, reopened] + +permissions: + contents: read + issues: write + pull-requests: write + +concurrency: + group: pr-format-check-${{ github.event.pull_request.number }} + cancel-in-progress: true + +jobs: + lint: + uses: rdkcentral/build_tools_workflows/.github/workflows/pr-lint.yml@develop From 7fef70896e9937358f686a3c6f5d8c5bcb5c345b Mon Sep 17 00:00:00 2001 From: bunnam988 Date: Wed, 22 Jul 2026 09:01:35 +0000 Subject: [PATCH 2/2] Add changelog for release 2.3.0 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05036d3..324617b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [2.3.0](https://github.com/rdkcentral/data-model-cli/compare/2.2.0...2.3.0) + +- RDKB-66032 : Add PR Format Check workflow [`#22`](https://github.com/rdkcentral/data-model-cli/pull/22) +- Merge tag '2.2.0' into develop [`b264414`](https://github.com/rdkcentral/data-model-cli/commit/b264414e7f0e919a39ab0beb4286e0c66f2f4996) + #### [2.2.0](https://github.com/rdkcentral/data-model-cli/compare/2.1.0...2.2.0) +> 7 May 2026 + - RDKCOM-5483: RDKBDEV-3324 Add CcspDmCli Documentation [`#10`](https://github.com/rdkcentral/data-model-cli/pull/10) +- Add changelog for release 2.2.0 [`05ed06d`](https://github.com/rdkcentral/data-model-cli/commit/05ed06dcd9d42c458b174970cf876815a617e254) - Merge tag '2.1.0' into develop [`4282a34`](https://github.com/rdkcentral/data-model-cli/commit/4282a3435ea28eed651a56ceb2e40fc70bbc903e) #### [2.1.0](https://github.com/rdkcentral/data-model-cli/compare/2.0.0...2.1.0)