Skip to content
4 changes: 2 additions & 2 deletions .github/workflows/L1-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
with:
repository: rdkcentral/entservices-testframework
path: entservices-testframework
ref: develop
ref: L2TestPlugin_COMRPC
Copy link

Copilot AI Jan 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change hardcodes a feature branch reference instead of using the stable 'develop' branch. Feature branch references in workflow files can cause issues if the branch is deleted, renamed, or if changes are not coordinated across repositories. This appears to be a temporary change for testing purposes. Consider using environment variables or workflow inputs to make this configurable, or document in the PR when these references will be reverted to 'develop'.

Suggested change
ref: L2TestPlugin_COMRPC
ref: develop

Copilot uses AI. Check for mistakes.
token: ${{ secrets.RDKCM_RDKE }}

- name: Checkout entservices-casting
Expand All @@ -138,7 +138,7 @@ jobs:
with:
repository: rdkcentral/entservices-casting
path: entservices-casting
ref: develop
ref: L2TestPlugin_COMRPC
Copy link

Copilot AI Jan 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change hardcodes a feature branch reference instead of using the stable 'develop' branch. Feature branch references in workflow files can cause issues if the branch is deleted, renamed, or if changes are not coordinated across repositories. This appears to be a temporary change for testing purposes. Consider using environment variables or workflow inputs to make this configurable, or document in the PR when these references will be reverted to 'develop'.

Copilot uses AI. Check for mistakes.

- name: Checkout googletest
if: steps.cache.outputs.cache-hit != 'true'
Expand Down
Loading