From 43efb9dca5fa9f5c32557bae5ae47fd86380d516 Mon Sep 17 00:00:00 2001 From: bunnam988 <107185904+bunnam988@users.noreply.github.com> Date: Wed, 15 Jul 2026 12:01:08 +0530 Subject: [PATCH 1/2] RDKB-66032 : Add PR Format Check workflow (#33) 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 d44c2fe3fa85bb0b17c651b78fe8ee1b127c50f8 Mon Sep 17 00:00:00 2001 From: bunnam988 Date: Wed, 22 Jul 2026 09:16:38 +0000 Subject: [PATCH 2/2] Add changelog for release 2.4.1 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb275c0..72ac54e 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.4.1](https://github.com/rdkcentral/snmp-protocol-agent/compare/2.4.0...2.4.1) + +- RDKB-66032 : Add PR Format Check workflow [`#33`](https://github.com/rdkcentral/snmp-protocol-agent/pull/33) +- Merge tag '2.4.0' into develop [`cd3b64e`](https://github.com/rdkcentral/snmp-protocol-agent/commit/cd3b64ecc18b9f33cc2d9d4eee8dfb66cc0d4f5b) + #### [2.4.0](https://github.com/rdkcentral/snmp-protocol-agent/compare/2.3.0...2.4.0) +> 8 July 2026 + - RDKB-62887: Changing frequent logs to debug [`#27`](https://github.com/rdkcentral/snmp-protocol-agent/pull/27) +- Add changelog for release 2.4.0 [`503950d`](https://github.com/rdkcentral/snmp-protocol-agent/commit/503950d7917522b177004a042bd93e0f2c093108) - Merge tag '2.3.0' into develop [`404768e`](https://github.com/rdkcentral/snmp-protocol-agent/commit/404768e97e3c43ee8733506388c07126744c5b52) #### [2.3.0](https://github.com/rdkcentral/snmp-protocol-agent/compare/2.2.0...2.3.0)