Skip to content
Merged
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
7 changes: 6 additions & 1 deletion .github/workflows/Linux build template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ permissions:

on:
workflow_call:
inputs:
thunderinterfaces_ref:
description: 'ThunderInterfaces ref to checkout (branch, tag, or SHA). Defaults to R4_4.'
type: string
default: 'R4_4'

jobs:
ThunderInterfaces:
Expand Down Expand Up @@ -81,7 +86,7 @@ jobs:
with:
path: ThunderInterfaces
repository: rdkcentral/ThunderInterfaces
ref: R4_4
ref: ${{ inputs.thunderinterfaces_ref }}

- name: Regex ThunderInterfaces
if: contains(github.event.pull_request.body, '[DependsOn=ThunderInterfaces:')
Expand Down
Loading