From 1cf978b28efb1fa5248029d99fe52a39c3031928 Mon Sep 17 00:00:00 2001 From: mlawsonca Date: Tue, 4 Mar 2025 19:45:06 -0800 Subject: [PATCH 1/2] Create check_variable.yml Signed-off-by: mlawsonca --- .github/workflows/check_variable.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/check_variable.yml diff --git a/.github/workflows/check_variable.yml b/.github/workflows/check_variable.yml new file mode 100644 index 00000000000..ae176f846c2 --- /dev/null +++ b/.github/workflows/check_variable.yml @@ -0,0 +1,14 @@ +name: Check variable value + +on: + workflow_dispatch + +env: + LEAP15_VERSION: ${{ vars.LEAP15_VERSION_MASTER }} + +jobs: + print_job: + runs-on: [self-hosted, light] + steps: + - name: "Print variable value" + run: echo "LEAP15_VERSION is $LEAP15_VERSION" From 8589350292c1c36542c2b2e60aa7ee61427c9fd7 Mon Sep 17 00:00:00 2001 From: mlawsonca Date: Tue, 4 Mar 2025 19:51:26 -0800 Subject: [PATCH 2/2] Update check_variable.yml Skip-build: true Signed-off-by: mlawsonca --- .github/workflows/check_variable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check_variable.yml b/.github/workflows/check_variable.yml index ae176f846c2..98fd030dc0c 100644 --- a/.github/workflows/check_variable.yml +++ b/.github/workflows/check_variable.yml @@ -1,7 +1,7 @@ name: Check variable value on: - workflow_dispatch + pull_request env: LEAP15_VERSION: ${{ vars.LEAP15_VERSION_MASTER }}