Skip to content

Commit e444f10

Browse files
committed
eli-445 linting
1 parent 592c858 commit e444f10

1 file changed

Lines changed: 12 additions & 6 deletions

File tree

.github/workflows/iam-bootstrap-deploy.yaml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,10 @@ jobs:
104104
if: >-
105105
always() &&
106106
(needs.deploy-dev.result == 'success' || needs.deploy-dev.result == 'skipped') &&
107-
(needs.metadata.outputs.target_env == 'all' ||
108-
needs.metadata.outputs.target_env == 'test')
107+
(
108+
needs.metadata.outputs.target_env == 'all' ||
109+
needs.metadata.outputs.target_env == 'test'
110+
)
109111
runs-on: ubuntu-latest
110112
timeout-minutes: 15
111113
environment: test
@@ -148,8 +150,10 @@ jobs:
148150
if: >-
149151
always() &&
150152
(needs.deploy-test.result == 'success' || needs.deploy-test.result == 'skipped') &&
151-
(needs.metadata.outputs.target_env == 'all' ||
152-
needs.metadata.outputs.target_env == 'preprod')
153+
(
154+
needs.metadata.outputs.target_env == 'all' ||
155+
needs.metadata.outputs.target_env == 'preprod'
156+
)
153157
runs-on: ubuntu-latest
154158
timeout-minutes: 15
155159
environment: preprod
@@ -192,8 +196,10 @@ jobs:
192196
if: >-
193197
always() &&
194198
(needs.deploy-preprod.result == 'success' || needs.deploy-preprod.result == 'skipped') &&
195-
(needs.metadata.outputs.target_env == 'all' ||
196-
needs.metadata.outputs.target_env == 'prod')
199+
(
200+
needs.metadata.outputs.target_env == 'all' ||
201+
needs.metadata.outputs.target_env == 'prod'
202+
)
197203
runs-on: ubuntu-latest
198204
timeout-minutes: 15
199205
environment: prod

0 commit comments

Comments
 (0)