From 14701b0e3ce656b7a6acf7f70247cc51c2d16bab Mon Sep 17 00:00:00 2001 From: "Brian J. Murrell" Date: Wed, 3 Jul 2024 10:31:01 -0400 Subject: [PATCH] Needs to be in a subdir Skip-PR-comments: true Run-GHA: true Required-githooks: true Signed-off-by: Brian J. Murrell --- .github/actions/variable-from-pragma/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/variable-from-pragma/action.yml b/.github/actions/variable-from-pragma/action.yml index 281146e..65904a5 100644 --- a/.github/actions/variable-from-pragma/action.yml +++ b/.github/actions/variable-from-pragma/action.yml @@ -24,11 +24,12 @@ runs: with: repository: daos-stack/actions-lib ref: bmurrell/initial + path: actions-lib - name: Create Variable id: value shell: bash run: | - . gha_functions.sh + . actions-lib/gha_functions.sh set -eu eval $(echo '${{ inputs.commit_message }}' | get_commit_pragmas) echo "value=${${{ inputs.pragma }}:-${{ inputs.default }}}" >> $GITHUB_OUTPUT