From 60e5b2400be001c5e697f37d1eabb2a861ae480a Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Wed, 11 Jun 2025 11:04:29 +0530 Subject: [PATCH 01/50] Create component-release.yml --- .github/workflows/component-release.yml | 47 +++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/component-release.yml diff --git a/.github/workflows/component-release.yml b/.github/workflows/component-release.yml new file mode 100644 index 00000000..28118930 --- /dev/null +++ b/.github/workflows/component-release.yml @@ -0,0 +1,47 @@ +name: Component Release + +on: + push: + branches: + - develop + +jobs: + release: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Git + run: | + git config --global user.name "GitHub Actions" + git config --global user.email "actions@github.com" + + - name: Clone the project and start release + run: | + git clone https://github.com/${{ github.repository }} project + cd project + git fetch origin main:main + git flow init -d + + LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`) + if [ -z "$LATEST_TAG" ]; then +  RELEASE_VERSION="v1.0.0" + else +  RELEASE_VERSION=$(echo $LATEST_TAG | awk -F. -v OFS=. '{$NF++;print}') + fi + + git flow release start $RELEASE_VERSION + auto-changelog -v $RELEASE_VERSION + git add CHANGELOG.md + git commit -m "$RELEASE_VERSION release changelog updates" + git flow release publish + + - name: Finish release and push + run: | + cd project + git flow release finish 1.0.0 + git push origin main + git push origin --tags + git push origin develop From 9c034f58e46b9a20fdae9c7db7eaff05ec349cfe Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 09:15:39 +0530 Subject: [PATCH 02/50] Update component-release.yml --- .github/workflows/component-release.yml | 54 ++++++++++++++++++------- 1 file changed, 40 insertions(+), 14 deletions(-) diff --git a/.github/workflows/component-release.yml b/.github/workflows/component-release.yml index 28118930..f98dd18c 100644 --- a/.github/workflows/component-release.yml +++ b/.github/workflows/component-release.yml @@ -17,31 +17,57 @@ jobs: run: | git config --global user.name "GitHub Actions" git config --global user.email "actions@github.com" - + - name: Install git-flow and auto-changelog + run: | + sudo apt-get update + sudo apt-get install -y git-flow + npm install -g auto-changelog - name: Clone the project and start release run: | - git clone https://github.com/${{ github.repository }} project + set -e + git clone https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} project cd project - git fetch origin main:main - git flow init -d - - LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`) - if [ -z "$LATEST_TAG" ]; then -  RELEASE_VERSION="v1.0.0" - else -  RELEASE_VERSION=$(echo $LATEST_TAG | awk -F. -v OFS=. '{$NF++;print}') + git fetch --all + git checkout main || git checkout -b main origin/main + git checkout develop || git checkout -b develop origin/develop + git flow init -f -d -p feature/ -b bugfix/ -r release/ -x hotfix/ -s support/ -t "" + # Extract the latest version from CHANGELOG.md and increment patch + LATEST_VERSION=$(grep -m 1 -oP '^#### \[\K[^\]]+' CHANGELOG.md) + if [[ -z "$LATEST_VERSION" ]]; then + echo "No version found in CHANGELOG.md!" + exit 1 + fi + IFS='.' read -r major minor patch <<< "$LATEST_VERSION" + if [[ -z "$major" || -z "$minor" || -z "$patch" ]]; then + echo "Invalid version format in CHANGELOG.md: $LATEST_VERSION" + exit 1 + fi + NEXT_PATCH=$((patch + 1)) + RELEASE_VERSION="$major.$minor.$NEXT_PATCH" + echo "LATEST_VERSION=$LATEST_VERSION" + echo "RELEASE_VERSION=$RELEASE_VERSION" + echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_ENV + # Check if tag already exists + if git rev-parse "refs/tags/$RELEASE_VERSION" >/dev/null 2>&1; then + echo "Tag $RELEASE_VERSION already exists. Skipping release." + exit 0 fi - git flow release start $RELEASE_VERSION auto-changelog -v $RELEASE_VERSION git add CHANGELOG.md git commit -m "$RELEASE_VERSION release changelog updates" git flow release publish - - - name: Finish release and push + - name: Finish release and push (default git-flow messages) run: | + set -e cd project - git flow release finish 1.0.0 + git flow release finish -m "$RELEASE_VERSION release" $RELEASE_VERSION git push origin main git push origin --tags git push origin develop + - name: Cleanup tag if workflow fails + if: failure() + run: | + cd project + git tag -d $RELEASE_VERSION || true + git push origin :refs/tags/$RELEASE_VERSION || true From c4be1e59617efd29591286db92c3e531a877e4dd Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 09:17:24 +0530 Subject: [PATCH 03/50] Create auto_pr_creation_target_repo_caller.yml --- .../auto_pr_creation_target_repo_caller.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/auto_pr_creation_target_repo_caller.yml diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml new file mode 100644 index 00000000..507becfc --- /dev/null +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -0,0 +1,12 @@ +name: Auto PR Creation Caller + +on: + push: + branches: + - topic/RDKEMW-4778 + +jobs: + call_auto_pr_workflow: + uses: ssitar583/build_tools_workflows/.github/workflows/auto_pr_creation_meta.yml@develop + secrets: + RDKCM_RDKE: ${{ secrets.RDKCM_RDKE }} From 60173d902b8fca21cc48c3d66cd03995ffc0fdab Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 09:19:02 +0530 Subject: [PATCH 04/50] Update auto_pr_creation_target_repo_caller.yml --- .github/workflows/auto_pr_creation_target_repo_caller.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index 507becfc..38faded9 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -7,6 +7,6 @@ on: jobs: call_auto_pr_workflow: - uses: ssitar583/build_tools_workflows/.github/workflows/auto_pr_creation_meta.yml@develop + uses: rdkcentral/build_tools_workflows/.github/workflows/auto_pr_creation_manifest.yml@RDKEMW-4778 secrets: RDKCM_RDKE: ${{ secrets.RDKCM_RDKE }} From 7e66e189693399b0049343b83369348dc79fbdb8 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 09:22:33 +0530 Subject: [PATCH 05/50] Update auto_pr_creation_target_repo_caller.yml --- .github/workflows/auto_pr_creation_target_repo_caller.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index 38faded9..79b9b5e5 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -7,6 +7,9 @@ on: jobs: call_auto_pr_workflow: - uses: rdkcentral/build_tools_workflows/.github/workflows/auto_pr_creation_manifest.yml@RDKEMW-4778 secrets: RDKCM_RDKE: ${{ secrets.RDKCM_RDKE }} + runs-on: ubuntu-latest + steps: + - name: Print placeholder instead of actual logic + run: echo "This is a placeholder for the actual logic." From 7fee060f51cd055cc34579f729876265ebef4ce4 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 09:23:33 +0530 Subject: [PATCH 06/50] Update auto_pr_creation_target_repo_caller.yml --- .github/workflows/auto_pr_creation_target_repo_caller.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index 79b9b5e5..258b42fd 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -7,8 +7,8 @@ on: jobs: call_auto_pr_workflow: - secrets: - RDKCM_RDKE: ${{ secrets.RDKCM_RDKE }} + #secrets: + #RDKCM_RDKE: ${{ secrets.RDKCM_RDKE }} runs-on: ubuntu-latest steps: - name: Print placeholder instead of actual logic From 011b149d424ec76368981fcddef6cfc1f94dddae Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 09:24:45 +0530 Subject: [PATCH 07/50] Update auto_pr_creation_target_repo_caller.yml --- .../workflows/auto_pr_creation_target_repo_caller.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index 258b42fd..de2af0a5 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -9,7 +9,8 @@ jobs: call_auto_pr_workflow: #secrets: #RDKCM_RDKE: ${{ secrets.RDKCM_RDKE }} - runs-on: ubuntu-latest - steps: - - name: Print placeholder instead of actual logic - run: echo "This is a placeholder for the actual logic." + uses: rdkcentral/build_tools_workflows/.github/workflows/auto_pr_creation_manifest.yml@RDKEMW-4778 + #runs-on: ubuntu-latest + #steps: + # - name: Print placeholder instead of actual logic + # run: echo "This is a placeholder for the actual logic." From 8fe44ae7664a0801098684020464061cb3102dfd Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 09:25:24 +0530 Subject: [PATCH 08/50] Update auto_pr_creation_target_repo_caller.yml --- .github/workflows/auto_pr_creation_target_repo_caller.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index de2af0a5..83772c24 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -10,6 +10,8 @@ jobs: #secrets: #RDKCM_RDKE: ${{ secrets.RDKCM_RDKE }} uses: rdkcentral/build_tools_workflows/.github/workflows/auto_pr_creation_manifest.yml@RDKEMW-4778 + secrets: + RDKCM_RDKE: ${{ secrets.RDKCM_RDKE }} #runs-on: ubuntu-latest #steps: # - name: Print placeholder instead of actual logic From 7ad80e550d66fca6a776cf588f0821b7c09b74e5 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 09:30:19 +0530 Subject: [PATCH 09/50] Update AVInput.cpp --- AVInput/AVInput.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AVInput/AVInput.cpp b/AVInput/AVInput.cpp index c7586702..38134793 100644 --- a/AVInput/AVInput.cpp +++ b/AVInput/AVInput.cpp @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. **/ - +//Test #include "AVInput.h" #include "dsMgr.h" #include "hdmiIn.hpp" From 9b41bbbad42cafd488a6b810d0e85033b44539f2 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 10:17:01 +0530 Subject: [PATCH 10/50] Update auto_pr_creation_target_repo_caller.yml --- .github/workflows/auto_pr_creation_target_repo_caller.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index 83772c24..13877796 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -6,6 +6,11 @@ on: - topic/RDKEMW-4778 jobs: + debug_check: + runs-on: ubuntu-latest + steps: + - run: echo "Triggered" + call_auto_pr_workflow: #secrets: #RDKCM_RDKE: ${{ secrets.RDKCM_RDKE }} From 1a92b0476bd0c435189dc059736c4bdfafdc4ba9 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 10:19:42 +0530 Subject: [PATCH 11/50] Update auto_pr_creation_target_repo_caller.yml --- .github/workflows/auto_pr_creation_target_repo_caller.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index 13877796..85d84ef0 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -14,7 +14,7 @@ jobs: call_auto_pr_workflow: #secrets: #RDKCM_RDKE: ${{ secrets.RDKCM_RDKE }} - uses: rdkcentral/build_tools_workflows/.github/workflows/auto_pr_creation_manifest.yml@RDKEMW-4778 + uses: rdkcentral/build_tools_workflows/.github/workflows/auto_pr_creation_meta.yml@RDKEMW-4778 secrets: RDKCM_RDKE: ${{ secrets.RDKCM_RDKE }} #runs-on: ubuntu-latest From de5b8076bc411afaf05583f1fd2fa284c35b4863 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 10:27:38 +0530 Subject: [PATCH 12/50] Update AVInput.h --- AVInput/AVInput.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AVInput/AVInput.h b/AVInput/AVInput.h index b6c86142..336f1878 100644 --- a/AVInput/AVInput.h +++ b/AVInput/AVInput.h @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. **/ - +//Test #pragma once #include "Module.h" From e88b16f86fd0d6b00e94bb52f5ac89349c66db1a Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 10:31:04 +0530 Subject: [PATCH 13/50] Update AVInput.h --- AVInput/AVInput.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AVInput/AVInput.h b/AVInput/AVInput.h index 336f1878..64e917ce 100644 --- a/AVInput/AVInput.h +++ b/AVInput/AVInput.h @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. **/ -//Test +//Test1 #pragma once #include "Module.h" From e8ff895f6d3c16257fb860c518b0e9b8bbc62430 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 10:54:16 +0530 Subject: [PATCH 14/50] Update AVInput.cpp --- AVInput/AVInput.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AVInput/AVInput.cpp b/AVInput/AVInput.cpp index 38134793..bf138a94 100644 --- a/AVInput/AVInput.cpp +++ b/AVInput/AVInput.cpp @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. **/ -//Test +//Test2 #include "AVInput.h" #include "dsMgr.h" #include "hdmiIn.hpp" From 42b783daaad305a672c8a8b1774ccd1798b1d40b Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 10:57:30 +0530 Subject: [PATCH 15/50] Update AVInput.cpp --- AVInput/AVInput.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AVInput/AVInput.cpp b/AVInput/AVInput.cpp index bf138a94..d585bfc7 100644 --- a/AVInput/AVInput.cpp +++ b/AVInput/AVInput.cpp @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. **/ -//Test2 +//Test3 #include "AVInput.h" #include "dsMgr.h" #include "hdmiIn.hpp" From c6265ad139dc4b523f1d9e74b6dc49356d3c9d02 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 11:13:52 +0530 Subject: [PATCH 16/50] Update AVInput.h --- AVInput/AVInput.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AVInput/AVInput.h b/AVInput/AVInput.h index 64e917ce..d98493b2 100644 --- a/AVInput/AVInput.h +++ b/AVInput/AVInput.h @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. **/ -//Test1 +//Test2 #pragma once #include "Module.h" From 028a7fa41e237d0e8fa17e33bf09ae6f04a1787e Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 11:16:03 +0530 Subject: [PATCH 17/50] Update AVInput.h --- AVInput/AVInput.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AVInput/AVInput.h b/AVInput/AVInput.h index d98493b2..4f7abda8 100644 --- a/AVInput/AVInput.h +++ b/AVInput/AVInput.h @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. **/ -//Test2 +//Test3 #pragma once #include "Module.h" From 1115cee34c6a8154ae78479c362cd7411d7e0720 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 11:23:01 +0530 Subject: [PATCH 18/50] Update AVInput.h --- AVInput/AVInput.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AVInput/AVInput.h b/AVInput/AVInput.h index 4f7abda8..a4bb5606 100644 --- a/AVInput/AVInput.h +++ b/AVInput/AVInput.h @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. **/ -//Test3 +//Test4 #pragma once #include "Module.h" From f7999ccf96c9a2b90a06177b73188735257bd235 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 11:25:52 +0530 Subject: [PATCH 19/50] Update AVInput.h --- AVInput/AVInput.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AVInput/AVInput.h b/AVInput/AVInput.h index a4bb5606..4ff46542 100644 --- a/AVInput/AVInput.h +++ b/AVInput/AVInput.h @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. **/ -//Test4 +//Test5 #pragma once #include "Module.h" From ee437b45ec119df2e3a8dfac4852c663286cd652 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 11:28:45 +0530 Subject: [PATCH 20/50] Update AVInput.h --- AVInput/AVInput.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AVInput/AVInput.h b/AVInput/AVInput.h index 4ff46542..4011f9fa 100644 --- a/AVInput/AVInput.h +++ b/AVInput/AVInput.h @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. **/ -//Test5 +//Test6 #pragma once #include "Module.h" From 4ca22bd57e1b627e963e5cf00dbf861567d2f41b Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Thu, 3 Jul 2025 11:36:29 +0530 Subject: [PATCH 21/50] Update AVInput.h --- AVInput/AVInput.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AVInput/AVInput.h b/AVInput/AVInput.h index 4011f9fa..42eabf0a 100644 --- a/AVInput/AVInput.h +++ b/AVInput/AVInput.h @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. **/ -//Test6 +//Test7 #pragma once #include "Module.h" From f7e9109a7ce1cd947ef3e8c0b7154140fed8286c Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 11:17:55 +0530 Subject: [PATCH 22/50] Update auto_pr_creation_target_repo_caller.yml --- .github/workflows/auto_pr_creation_target_repo_caller.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index 85d84ef0..7c782074 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -21,3 +21,4 @@ jobs: #steps: # - name: Print placeholder instead of actual logic # run: echo "This is a placeholder for the actual logic." + From 7f76f731d2b1ca20b6c2528dac9d82fedfc49aa1 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 11:23:18 +0530 Subject: [PATCH 23/50] Update auto_pr_creation_target_repo_caller.yml From 3f6766894882da5f4fe17fab1e2ee619255a016d Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 11:26:07 +0530 Subject: [PATCH 24/50] Update auto_pr_creation_target_repo_caller.yml From 498ae0184bb9b31285716cad5d697452c69b78d8 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 11:31:33 +0530 Subject: [PATCH 25/50] Update auto_pr_creation_target_repo_caller.yml From 5d1f496fa581a9f97ee309c3c82e34cb075443d6 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 11:37:41 +0530 Subject: [PATCH 26/50] Update auto_pr_creation_target_repo_caller.yml --- .github/workflows/auto_pr_creation_target_repo_caller.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index 7c782074..396d09d6 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -21,4 +21,4 @@ jobs: #steps: # - name: Print placeholder instead of actual logic # run: echo "This is a placeholder for the actual logic." - + From 5a97a57bcfa8ab25ab88b8237dbc7bfcfb8eae4f Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 11:44:06 +0530 Subject: [PATCH 27/50] Update auto_pr_creation_target_repo_caller.yml From 9085b9240a5d5136b8ca00c1482c39a1dc706629 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 11:51:16 +0530 Subject: [PATCH 28/50] Update auto_pr_creation_target_repo_caller.yml From 350f2d419c784632f3266b88507ae83ce8df66bd Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 11:52:20 +0530 Subject: [PATCH 29/50] Update auto_pr_creation_target_repo_caller.yml From 21156eea80dd55ae085f11f453c500ae18aca232 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 12:07:03 +0530 Subject: [PATCH 30/50] Update auto_pr_creation_target_repo_caller.yml From 3dddc66a59b3d218306a065d2c056b57cec69752 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 12:08:07 +0530 Subject: [PATCH 31/50] Update auto_pr_creation_target_repo_caller.yml From 9a06496ba5d71d158934dc34d7929af687b7d644 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 12:17:03 +0530 Subject: [PATCH 32/50] Update auto_pr_creation_target_repo_caller.yml From ee827c63a955aeb4339eb95a0250837797cb9531 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 12:23:33 +0530 Subject: [PATCH 33/50] Update auto_pr_creation_target_repo_caller.yml From 3081409fea0e2282b5c93da2f06d599711cde038 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 12:24:32 +0530 Subject: [PATCH 34/50] Update auto_pr_creation_target_repo_caller.yml From 7998ed46a1694f388b6684762b4b9f5a5d0a3f6e Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 12:27:26 +0530 Subject: [PATCH 35/50] Update auto_pr_creation_target_repo_caller.yml From aa97871809e128848fa2b7bee1625d6fa3637cf4 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 12:30:07 +0530 Subject: [PATCH 36/50] Update auto_pr_creation_target_repo_caller.yml --- .github/workflows/auto_pr_creation_target_repo_caller.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index 396d09d6..57e653fd 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -3,7 +3,7 @@ name: Auto PR Creation Caller on: push: branches: - - topic/RDKEMW-4778 + - topic/RDKEMW-4778 jobs: debug_check: From 3b1fc03bbe20ba6bbfe99ed7093ff67bea8c6923 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 14:33:39 +0530 Subject: [PATCH 37/50] Update auto_pr_creation_target_repo_caller.yml From cfea3daff304a9a3d8b217282069ff73fde2bc5e Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 14:39:11 +0530 Subject: [PATCH 38/50] Update auto_pr_creation_target_repo_caller.yml --- .github/workflows/auto_pr_creation_target_repo_caller.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index 57e653fd..5a78eb5f 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -9,7 +9,7 @@ jobs: debug_check: runs-on: ubuntu-latest steps: - - run: echo "Triggered" + - run: echo "Triggered" call_auto_pr_workflow: #secrets: From eb65c05b2b778fff2e3bb6a7d08abefc586cd96d Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 14:47:42 +0530 Subject: [PATCH 39/50] Update auto_pr_creation_target_repo_caller.yml --- .github/workflows/auto_pr_creation_target_repo_caller.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index 5a78eb5f..8ed7fe7e 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -3,7 +3,7 @@ name: Auto PR Creation Caller on: push: branches: - - topic/RDKEMW-4778 + - topic/RDKEMW-4778 jobs: debug_check: From 62416e28b7fdf4a888ab6c80020ab04a08b61af3 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 14:48:14 +0530 Subject: [PATCH 40/50] Update auto_pr_creation_target_repo_caller.yml --- .github/workflows/auto_pr_creation_target_repo_caller.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index 8ed7fe7e..5a78eb5f 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -3,7 +3,7 @@ name: Auto PR Creation Caller on: push: branches: - - topic/RDKEMW-4778 + - topic/RDKEMW-4778 jobs: debug_check: From b962120fec114f2017cb1bc96e680aba59309b04 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 14:50:07 +0530 Subject: [PATCH 41/50] Update auto_pr_creation_target_repo_caller.yml --- .github/workflows/auto_pr_creation_target_repo_caller.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index 5a78eb5f..8ed7fe7e 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -3,7 +3,7 @@ name: Auto PR Creation Caller on: push: branches: - - topic/RDKEMW-4778 + - topic/RDKEMW-4778 jobs: debug_check: From 96b419e4001c76f6e2b9185b28f98ce814550239 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 14:56:15 +0530 Subject: [PATCH 42/50] Update auto_pr_creation_target_repo_caller.yml From 711c01636474d263379a7c15fbb7738e2bb049f6 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 15:22:52 +0530 Subject: [PATCH 43/50] Update auto_pr_creation_target_repo_caller.yml From 9679a41fd6b3af5616e1db97a5c539e47b9d8362 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 15:25:35 +0530 Subject: [PATCH 44/50] Update auto_pr_creation_target_repo_caller.yml From 02156a1569f1a80c4be8fc26b0b50e19b30b9607 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 17:53:11 +0530 Subject: [PATCH 45/50] Update auto_pr_creation_target_repo_caller.yml --- .github/workflows/auto_pr_creation_target_repo_caller.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index 8ed7fe7e..5a78eb5f 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -3,7 +3,7 @@ name: Auto PR Creation Caller on: push: branches: - - topic/RDKEMW-4778 + - topic/RDKEMW-4778 jobs: debug_check: From 7d91d5e38aa0bf350ba957630535c4abe1398979 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Tue, 8 Jul 2025 18:21:36 +0530 Subject: [PATCH 46/50] Update auto_pr_creation_target_repo_caller.yml --- .github/workflows/auto_pr_creation_target_repo_caller.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index 5a78eb5f..9cde8c2e 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -3,7 +3,7 @@ name: Auto PR Creation Caller on: push: branches: - - topic/RDKEMW-4778 + - test_develop jobs: debug_check: From 46d26e9ae62a0783925ce0d4c54f70d3715d4169 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Wed, 9 Jul 2025 11:29:49 +0530 Subject: [PATCH 47/50] Update auto_pr_creation_target_repo_caller.yml --- .github/workflows/auto_pr_creation_target_repo_caller.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto_pr_creation_target_repo_caller.yml b/.github/workflows/auto_pr_creation_target_repo_caller.yml index 9cde8c2e..cb8a6038 100644 --- a/.github/workflows/auto_pr_creation_target_repo_caller.yml +++ b/.github/workflows/auto_pr_creation_target_repo_caller.yml @@ -1,7 +1,8 @@ name: Auto PR Creation Caller on: - push: + pull_request: + types: [closed] branches: - test_develop From c86699a9f4815f7cad2c421dbcd72f53aa3ebfc9 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Wed, 9 Jul 2025 11:55:10 +0530 Subject: [PATCH 48/50] Update HdcpProfile.cpp --- HdcpProfile/HdcpProfile.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/HdcpProfile/HdcpProfile.cpp b/HdcpProfile/HdcpProfile.cpp index bcfa8f63..fdf9cf39 100644 --- a/HdcpProfile/HdcpProfile.cpp +++ b/HdcpProfile/HdcpProfile.cpp @@ -173,3 +173,4 @@ namespace WPEFramework } } // namespace Plugin } // namespace WPEFramework + From f124777c80d38617416ffca0522b7bcab2ee6a46 Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Wed, 9 Jul 2025 12:35:01 +0530 Subject: [PATCH 49/50] Update HdcpProfile.cpp --- HdcpProfile/HdcpProfile.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/HdcpProfile/HdcpProfile.cpp b/HdcpProfile/HdcpProfile.cpp index fdf9cf39..ea090a97 100644 --- a/HdcpProfile/HdcpProfile.cpp +++ b/HdcpProfile/HdcpProfile.cpp @@ -174,3 +174,4 @@ namespace WPEFramework } // namespace Plugin } // namespace WPEFramework + From ea53dd6fc6d2a679b95d3205e1d806ceabfbbf9c Mon Sep 17 00:00:00 2001 From: ssitar583 Date: Wed, 9 Jul 2025 19:13:27 +0530 Subject: [PATCH 50/50] Update AVInput.cpp --- AVInput/AVInput.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AVInput/AVInput.cpp b/AVInput/AVInput.cpp index d585bfc7..f1637ae4 100644 --- a/AVInput/AVInput.cpp +++ b/AVInput/AVInput.cpp @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. **/ -//Test3 +//Test4 #include "AVInput.h" #include "dsMgr.h" #include "hdmiIn.hpp"