From 305443f833edd9e1798feb6a2ad2e973c3c75047 Mon Sep 17 00:00:00 2001 From: Mateusz Daniluk <121170681+VeithMetro@users.noreply.github.com> Date: Wed, 5 Jun 2024 08:55:48 +0200 Subject: [PATCH] Using templates from develop branches to test it and adding workflow dispatch call --- .github/workflows/Build ThunderNanoServices on Linux.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Build ThunderNanoServices on Linux.yml b/.github/workflows/Build ThunderNanoServices on Linux.yml index 2139ab951..be6976496 100644 --- a/.github/workflows/Build ThunderNanoServices on Linux.yml +++ b/.github/workflows/Build ThunderNanoServices on Linux.yml @@ -1,6 +1,7 @@ name: Build ThunderNanoServices on Linux on: + workflow_dispatch: push: # branches: ["master"] pull_request: @@ -8,12 +9,12 @@ on: jobs: Thunder: - uses: rdkcentral/Thunder/.github/workflows/Linux build template.yml@master + uses: rdkcentral/Thunder/.github/workflows/Linux build template.yml@development/actions-checkouts ThunderInterfaces: needs: Thunder - uses: rdkcentral/ThunderInterfaces/.github/workflows/Linux build template.yml@master + uses: rdkcentral/ThunderInterfaces/.github/workflows/Linux build template.yml@development/actions-checkouts ThunderNanoServices: needs: ThunderInterfaces - uses: rdkcentral/ThunderNanoServices/.github/workflows/Linux build template.yml@master + uses: rdkcentral/ThunderNanoServices/.github/workflows/Linux build template.yml@development/actions-checkouts