From 23527221cfa01c9b0b2544c47d2e39f92e1d7092 Mon Sep 17 00:00:00 2001 From: Brett Logan <9400927+lindluni@users.noreply.github.com> Date: Tue, 20 Aug 2024 11:26:58 -0400 Subject: [PATCH] Update README.md Add missing `job` property. --- README.md | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 8a75190..827dad0 100644 --- a/README.md +++ b/README.md @@ -54,21 +54,22 @@ name: Inject Variables on: pull: jobs: - name: Echo Environment - runs-on: ubuntu-latest - steps: - - name: Inject Variables - uses: lindluni/actions-variable-groups@v1.0.0 - with: - org: lindluni - repo: variable-groups - groups: | - projectAlpha/variables # This is a path in the lindluni/variable-groups repository, so all variable group files in the directory will be injected - projectAlpha/variables@main # TSame as above, but references a specific version via branch - projectBeta/variables/nodejs.yml # This is a file in the lindluni/variable-groups repository, so only variable groups in the file will be injected - projectBeta/variables/nodejs.yml@v1.0.0 # Same as above, but references a specific version via tag - projectGamma/variables/golang.yml # This is a file in the lindluni/variable-groups repository, so only variable groups in the file will be injected - projectGamma/variables/golang.yml@9969a43ca477571f91073abf66dfceaf1d3d069a # Same as above, but references a specific version via commit - - name: Print Environment - run: env | sort + job: + name: Echo Environment + runs-on: ubuntu-latest + steps: + - name: Inject Variables + uses: lindluni/actions-variable-groups@v1.0.0 + with: + org: lindluni + repo: variable-groups + groups: | + projectAlpha/variables # This is a path in the lindluni/variable-groups repository, so all variable group files in the directory will be injected + projectAlpha/variables@main # TSame as above, but references a specific version via branch + projectBeta/variables/nodejs.yml # This is a file in the lindluni/variable-groups repository, so only variable groups in the file will be injected + projectBeta/variables/nodejs.yml@v1.0.0 # Same as above, but references a specific version via tag + projectGamma/variables/golang.yml # This is a file in the lindluni/variable-groups repository, so only variable groups in the file will be injected + projectGamma/variables/golang.yml@9969a43ca477571f91073abf66dfceaf1d3d069a # Same as above, but references a specific version via commit + - name: Print Environment + run: env | sort ```