-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge PR #178 from webwarrior-ws/fix-pr177
FileConventions: account for .env prefix when checking versions in yaml files. This should have been done in PR177.
- Loading branch information
Showing
4 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
.../DummyFiles/DummyWorkflowsWithEnvPrefixed/DummyCIWithPulumiVersionInEnvPrefixedV2.0.0.yml
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
PULUMI_VERSION: 2.0.0 | ||
|
||
jobs: | ||
jobA: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Pulumi CLI | ||
with: | ||
pulumi-version: ${{ env.PULUMI_VERSION }} | ||
- name: Print "Hello World!" | ||
run: echo "Hello World!" |
17 changes: 17 additions & 0 deletions
17
.../DummyFiles/DummyWorkflowsWithEnvPrefixed/DummyCIWithPulumiVersionInEnvPrefixedV2.0.1.yml
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
PULUMI_VERSION: 2.0.1 | ||
|
||
jobs: | ||
jobA: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Pulumi CLI | ||
with: | ||
pulumi-version: ${{ env.PULUMI_VERSION }} | ||
- name: Print "Hello World!" | ||
run: echo "Hello World!" |
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
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