Skip to content

Commit

Permalink
allow nonprod and prod plans if only one of policy or role changes (#779
Browse files Browse the repository at this point in the history
)

remove extra n from nonprod
  • Loading branch information
sdecker authored Oct 15, 2024
1 parent de9096a commit dc74359
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ jobs:
tenantPlan:
name: Plan tenant
needs: [deployPolicy, deployRoles]
if: |
always()
&& !contains(needs.*.result,'failure')
uses: ./.github/workflows/plan.yml
with:
pacEnvironmentSelector: tenant
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,12 @@ jobs:
nonprodPlan:
name: Plan nonprod
needs: [deployPolicy, deployRoles]
if: |
always()
&& !contains(needs.*.result,'failure')
uses: ./.github/workflows/plan.yml
with:
pacEnvironmentSelector: nonnprod
pacEnvironmentSelector: nonprod
planGitHubEnvironment: NONPROD-PLAN
PAC_OUTPUT_FOLDER: ./Output
PAC_DEFINITIONS_FOLDER: ./Definitions
Expand All @@ -67,6 +70,9 @@ jobs:
prodPlan:
name: Plan prod
needs: [deployPolicy, deployRoles]
if: |
always()
&& !contains(needs.*.result,'failure')
uses: ./.github/workflows/plan.yml
with:
pacEnvironmentSelector: prod
Expand Down

0 comments on commit dc74359

Please sign in to comment.