Release 2.4.0 - #38
Conversation
Release 2.3.0 2.3.0
…36) Signed-off-by: DeepakRathn <deepak.rathn@gmail.com>
## 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)
|
I have read the CLA Document and I hereby sign the CLA You can retrigger this bot by commenting recheck in this Pull Request. Posted by the CLA Assistant Lite bot. |
There was a problem hiding this comment.
Pull request overview
Release 2.4.0 updates MoCA device reporting behavior and adds repository automation to enforce PR formatting, alongside the corresponding changelog entry.
Changes:
- Adjust MoCA associated-device enumeration and synchronization behavior in the TR-181 middle-layer code.
- Add a PR format check GitHub workflow (reusable workflow invocation).
- Update
CHANGELOG.mdwith the 2.4.0 release notes.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 5 comments.
| File | Description |
|---|---|
source/TR-181/middle_layer_src/cosa_moca_network_info.c |
Updates MoCA client counting and device status synchronization / notification payloads. |
CHANGELOG.md |
Adds the 2.4.0 section and links to included PRs/commits. |
.github/workflows/pr-lint.yml |
Introduces a PR lint workflow using a reusable workflow. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| #ifdef CISCO_MOCA_CPE | ||
| pnum_cpes = *pulCount ; //temporary work around to bypass connected client behind node implementation for CXB3 due to CISCOXB3-4969 | ||
| #else | ||
| pnum_cpes = *pulCount ; //fix solve incorrect moca client count | ||
| #endif |
| else | ||
| { | ||
| Set_MoCADevices_Status_Offline(); | ||
| Send_Update_to_LMLite(FALSE); | ||
| } |
| cur->ssidType = NULL; | ||
| } | ||
| cur->ssidType = strdup("Device.MoCA.Interface.1."); | ||
| cur->ssidType = strdup(" "); |
| (NULL != cur->ssidType) ? cur->ssidType : "NULL", | ||
| (NULL != cur->parentMac) ? cur->parentMac : "NULL", | ||
| "Device.MoCA.Interface.1.", | ||
| " ", |
|
|
||
| jobs: | ||
| lint: | ||
| uses: rdkcentral/build_tools_workflows/.github/workflows/pr-lint.yml@develop |
Release 2.4.0