diff --git a/.github/workflows/check_variable.yml b/.github/workflows/check_variable.yml new file mode 100644 index 00000000000..98fd030dc0c --- /dev/null +++ b/.github/workflows/check_variable.yml @@ -0,0 +1,14 @@ +name: Check variable value + +on: + pull_request + +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"