Skip to content
6 changes: 3 additions & 3 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 Expand Up @@ -203,7 +203,7 @@ jobs:
with:
repository: rdkcentral/entservices-apis
path: entservices-apis
ref: ${{env.INTERFACES_REF}}
ref: Test
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 replaces the environment variable reference '${{env.INTERFACES_REF}}' (which resolves to 'develop') with a hardcoded 'Test' branch reference. This is inconsistent with the pattern used elsewhere in the workflow where INTERFACES_REF is defined as an environment variable (line 17). Hardcoding feature branch names reduces maintainability and can cause failures if the branch doesn't exist. Consider using an environment variable or workflow input for this reference as well.

Suggested change
ref: Test
ref: ${{ env.INTERFACES_REF }}

Copilot uses AI. Check for mistakes.
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.

The branch name 'Test' is generic and ambiguous. It doesn't clearly indicate its purpose or relationship to COMRPC changes. Consider using a more descriptive branch name like 'L2TestPlugin_COMRPC' to maintain consistency with the other branch references in this PR.

Suggested change
ref: Test
ref: L2TestPlugin_COMRPC

Copilot uses AI. Check for mistakes.
#token : ${{ secrets.RDKCM_RDKE }}
run: rm -rf $GITHUB_WORKSPACE/entservices-apis/jsonrpc/DTV.json

Expand Down
Loading