-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing `job` property.
- Loading branch information
Showing
1 changed file
with
18 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,21 +54,22 @@ name: Inject Variables | |
on: | ||
pull: | ||
jobs: | ||
name: Echo Environment | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Inject Variables | ||
uses: lindluni/[email protected] | ||
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/[email protected] # 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/[email protected] | ||
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/[email protected] # 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 | ||
``` |