File tree Expand file tree Collapse file tree 4 files changed +28
-47
lines changed Expand file tree Collapse file tree 4 files changed +28
-47
lines changed Original file line number Diff line number Diff line change 25
25
git fetch origin ${{ github.event.pull_request.base.ref }} --depth=1
26
26
git diff --name-only origin/${{ github.event.pull_request.base.ref }} > changed_files.txt
27
27
28
+ - name : Filter only existing changed files
29
+ id : filter_existing
30
+ run : |
31
+ touch existing_files.txt
32
+ while IFS= read -r file; do
33
+ if [ -f "$file" ]; then
34
+ echo "$file" >> existing_files.txt
35
+ else
36
+ echo " $file file has been removed in your PR,hence skipping validation for the removed file"
37
+ fi
38
+ done < changed_files.txt
39
+
28
40
- name : Run validation script
29
41
run : |
30
- python .github/workflows/validate_interface_headers_incremental.py changed_files.txt
42
+ if [ -s existing_files.txt ]; then
43
+ python .github/workflows/validate_interface_headers_incremental.py existing_files.txt
44
+ else
45
+ echo "No valid changed files to validate."
46
+ fi
31
47
32
48
- name : Remove changed_files.txt
33
49
run : |
Original file line number Diff line number Diff line change @@ -4,10 +4,21 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
5
5
Generated by [ ` auto-changelog ` ] ( https://github.com/CookPete/auto-changelog ) .
6
6
7
+ #### [ 1.6.0] ( https://github.com/rdkcentral/entservices-apis/compare/1.5.1...1.6.0 )
8
+
9
+ - IProvisioning.h Interface header not following coding guidelines [ ` #237 ` ] ( https://github.com/rdkcentral/entservices-apis/pull/237 )
10
+ - IProvisioning.h Interface header not following coding guidelines [ ` #257 ` ] ( https://github.com/rdkcentral/entservices-apis/pull/257 )
11
+ - RDKEMW-3385: Implement Caching in New PackageManager [ ` #248 ` ] ( https://github.com/rdkcentral/entservices-apis/pull/248 )
12
+ - IProvisioning.h Interface header not following coding guidelines [ ` #249 ` ] ( https://github.com/rdkcentral/entservices-apis/pull/249 )
13
+ - Merge tag '1.5.1' into develop [ ` 2b988b6 ` ] ( https://github.com/rdkcentral/entservices-apis/commit/2b988b65d2d7eae1c22538fa2475a1a04eb70143 )
14
+
7
15
#### [ 1.5.1] ( https://github.com/rdkcentral/entservices-apis/compare/1.5.0...1.5.1 )
8
16
17
+ > 6 June 2025
18
+
9
19
- RDK-56578 : Changed deviceType from tv to IpTv [ ` #156 ` ] ( https://github.com/rdkcentral/entservices-apis/pull/156 )
10
20
- RDKEMW-4872: lifecycle2.0 integration [ ` #242 ` ] ( https://github.com/rdkcentral/entservices-apis/pull/242 )
21
+ - 1.5.1 release changelog updates [ ` b7bbff3 ` ] ( https://github.com/rdkcentral/entservices-apis/commit/b7bbff3308e54efbb5db7d56c9548e8191bae382 )
11
22
- Merge tag '1.5.0' into develop [ ` a7793b3 ` ] ( https://github.com/rdkcentral/entservices-apis/commit/a7793b312ddb00c8009d34f52031fd6e7f3b5646 )
12
23
13
24
#### [ 1.5.0] ( https://github.com/rdkcentral/entservices-apis/compare/1.4.2...1.5.0 )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -75,9 +75,6 @@ namespace Exchange {
75
75
ID_CONTENTDECRYPTION = ID_ENTOS_OFFSET + 0x030 ,
76
76
ID_CONTENTDECRYPTION_NOTIFICATION = ID_CONTENTDECRYPTION + 1 ,
77
77
78
- ID_PROVISIONING = ID_ENTOS_OFFSET + 0x040 ,
79
- ID_PROVISIONING_NOTIFICATION = ID_PROVISIONING + 1 ,
80
-
81
78
ID_CAPTURE = ID_ENTOS_OFFSET + 0x050 ,
82
79
83
80
ID_PACKAGER = ID_ENTOS_OFFSET + 0x060 ,
You can’t perform that action at this time.
0 commit comments