Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/pr-lint.yml
Original file line number Diff line number Diff line change
@@ -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

Comment on lines +3 to +11
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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,26 @@ 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).

#### [1.3.0](https://github.com/rdkcentral/secure-upnp/compare/1.2.0...1.3.0)

- RDKB-66032 : Add PR Format Check workflow [`#12`](https://github.com/rdkcentral/secure-upnp/pull/12)

Comment on lines +7 to +10
Comment on lines +7 to +10
#### [1.2.0](https://github.com/rdkcentral/secure-upnp/compare/1.1.0...1.2.0)

> 22 May 2026

- RDKB-64112: Account ID check removal from IDM [`#10`](https://github.com/rdkcentral/secure-upnp/pull/10)
- Merge tag '1.1.0' into develop [`2320661`](https://github.com/rdkcentral/secure-upnp/commit/23206619e781bb45228e0df2459dc75ff74c37bd)

#### [1.1.0](https://github.com/rdkcentral/secure-upnp/compare/1.0.0...1.1.0)

> 23 April 2026

- Update CODEOWNERS [`#6`](https://github.com/rdkcentral/secure-upnp/pull/6)
- Update CODEOWNERS [`#3`](https://github.com/rdkcentral/secure-upnp/pull/3)
- Deploy fossid_integration_stateless_diffscan_target_repo action [`#5`](https://github.com/rdkcentral/secure-upnp/pull/5)
- Deploy cla action [`#4`](https://github.com/rdkcentral/secure-upnp/pull/4)
- Add changelog for release 1.1.0 [`9ababf8`](https://github.com/rdkcentral/secure-upnp/commit/9ababf813e87b50523bf624e7aa15ef51e688e5d)
- Merge tag '1.0.0' into develop [`8434d12`](https://github.com/rdkcentral/secure-upnp/commit/8434d12f59d917bc863b3cf77bd49a9387902a6e)

#### 1.0.0
Expand Down
2 changes: 2 additions & 0 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ xcal_device_LDADD = $(top_builddir)/broadband/lib/libxdevice.la
if RDKB_INTER_DEVICE_MANAGER_SUPPORT
lib_LTLIBRARIES = libupnpidm.la
libupnpidm_la_SOURCES = idm_server.c idm_client.c idm_library.c
libupnpidm_la_CFLAGS = $(AM_CFLAGS) -DFEATURE_SUPPORT_RDKLOG
libupnpidm_la_LIBADD = -lrdkloggers -lccsp_common
Comment on lines 78 to +80
endif
endif
if VIDEO_SUPPORT
Expand Down
Loading
Loading