Skip to content

Commit ea2ae2a

Browse files
authored
enhance qase reporting to be toggled on/off (#446)
1 parent d496766 commit ea2ae2a

12 files changed

+98
-98
lines changed

.github/workflows/cluster-provisioning.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
REPORTING_ENABLED: >-
5353
${{
5454
github.event_name == 'schedule' ||
55-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
55+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
5656
}}
5757
5858
steps:
@@ -316,7 +316,7 @@ jobs:
316316
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
317317
uses: ./.github/actions/run-hostbusters-provisioning
318318
with:
319-
reporting: env.REPORTING_ENABLED
319+
reporting: ${{ env.REPORTING_ENABLED }}
320320

321321
- name: Cleanup Infrastructure
322322
if: always()
@@ -384,7 +384,7 @@ jobs:
384384
REPORTING_ENABLED: >-
385385
${{
386386
github.event_name == 'schedule' ||
387-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
387+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
388388
}}
389389
390390
steps:
@@ -648,7 +648,7 @@ jobs:
648648
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
649649
uses: ./.github/actions/run-hostbusters-provisioning
650650
with:
651-
reporting: env.REPORTING_ENABLED
651+
reporting: ${{ env.REPORTING_ENABLED }}
652652

653653
- name: Cleanup Infrastructure
654654
if: always()
@@ -716,7 +716,7 @@ jobs:
716716
REPORTING_ENABLED: >-
717717
${{
718718
github.event_name == 'schedule' ||
719-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
719+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
720720
}}
721721
722722
steps:
@@ -989,7 +989,7 @@ jobs:
989989
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
990990
uses: ./.github/actions/run-hostbusters-provisioning
991991
with:
992-
reporting: env.REPORTING_ENABLED
992+
reporting: ${{ env.REPORTING_ENABLED }}
993993

994994
- name: Cleanup Infrastructure
995995
if: always()
@@ -1057,7 +1057,7 @@ jobs:
10571057
REPORTING_ENABLED: >-
10581058
${{
10591059
github.event_name == 'schedule' ||
1060-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
1060+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
10611061
}}
10621062
10631063
steps:
@@ -1331,7 +1331,7 @@ jobs:
13311331
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
13321332
uses: ./.github/actions/run-hostbusters-provisioning
13331333
with:
1334-
reporting: env.REPORTING_ENABLED
1334+
reporting: ${{ env.REPORTING_ENABLED }}
13351335

13361336
- name: Cleanup Infrastructure
13371337
if: always()

.github/workflows/dualstack-cluster-provisioning.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
REPORTING_ENABLED: >-
5353
${{
5454
github.event_name == 'schedule' ||
55-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
55+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
5656
}}
5757
5858
steps:
@@ -296,7 +296,7 @@ jobs:
296296
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
297297
uses: ./.github/actions/run-hostbusters-dualstack-provisioning
298298
with:
299-
reporting: env.REPORTING_ENABLED
299+
reporting: ${{ env.REPORTING_ENABLED }}
300300

301301
- name: Cleanup Infrastructure
302302
if: always()
@@ -364,7 +364,7 @@ jobs:
364364
REPORTING_ENABLED: >-
365365
${{
366366
github.event_name == 'schedule' ||
367-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
367+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
368368
}}
369369
370370
steps:
@@ -608,7 +608,7 @@ jobs:
608608
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
609609
uses: ./.github/actions/run-hostbusters-dualstack-provisioning
610610
with:
611-
reporting: env.REPORTING_ENABLED
611+
reporting: ${{ env.REPORTING_ENABLED }}
612612

613613
- name: Cleanup Infrastructure
614614
if: always()

.github/workflows/dualstack-rancher-ipv6-cluster-provisioning.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
REPORTING_ENABLED: >-
5353
${{
5454
github.event_name == 'schedule' ||
55-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
55+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
5656
}}
5757
5858
steps:
@@ -295,7 +295,7 @@ jobs:
295295
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
296296
uses: ./.github/actions/run-hostbusters-ipv6-provisioning
297297
with:
298-
reporting: env.REPORTING_ENABLED
298+
reporting: ${{ env.REPORTING_ENABLED }}
299299

300300
- name: Cleanup Infrastructure
301301
if: always()
@@ -363,7 +363,7 @@ jobs:
363363
REPORTING_ENABLED: >-
364364
${{
365365
github.event_name == 'schedule' ||
366-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
366+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
367367
}}
368368
369369
steps:
@@ -606,7 +606,7 @@ jobs:
606606
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
607607
uses: ./.github/actions/run-hostbusters-ipv6-provisioning
608608
with:
609-
reporting: env.REPORTING_ENABLED
609+
reporting: ${{ env.REPORTING_ENABLED }}
610610

611611
- name: Cleanup Infrastructure
612612
if: always()

.github/workflows/ipv6-cluster-provisioning.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
REPORTING_ENABLED: >-
5353
${{
5454
github.event_name == 'schedule' ||
55-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
55+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
5656
}}
5757
5858
steps:
@@ -297,7 +297,7 @@ jobs:
297297
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
298298
uses: ./.github/actions/run-hostbusters-ipv6-provisioning
299299
with:
300-
reporting: env.REPORTING_ENABLED
300+
reporting: ${{ env.REPORTING_ENABLED }}
301301

302302
- name: Cleanup Infrastructure
303303
if: always()
@@ -365,7 +365,7 @@ jobs:
365365
REPORTING_ENABLED: >-
366366
${{
367367
github.event_name == 'schedule' ||
368-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
368+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
369369
}}
370370
371371
steps:
@@ -610,7 +610,7 @@ jobs:
610610
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
611611
uses: ./.github/actions/run-hostbusters-ipv6-provisioning
612612
with:
613-
reporting: env.REPORTING_ENABLED
613+
reporting: ${{ env.REPORTING_ENABLED }}
614614

615615
- name: Cleanup Infrastructure
616616
if: always()

.github/workflows/post-release-prime.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
environment: prime
5252
env:
5353
HOSTNAME_PREFIX: "gha-prime-213"
54-
REPORTING_ENABLED: ${{ github.event.inputs.reporting }}
54+
REPORTING_ENABLED: ${{ github.event.inputs.reporting == 'true' }}
5555

5656
steps:
5757
- name: Checkout repository
@@ -239,7 +239,7 @@ jobs:
239239
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
240240
uses: ./.github/actions/run-hostbusters-prime-ui-checks
241241
with:
242-
reporting: env.REPORTING_ENABLED
242+
reporting: ${{ env.REPORTING_ENABLED }}
243243

244244
- name: Cleanup Infrastructure
245245
if: always()
@@ -293,7 +293,7 @@ jobs:
293293
environment: prime
294294
env:
295295
HOSTNAME_PREFIX: "gha-prime-212"
296-
REPORTING_ENABLED: ${{ github.event.inputs.reporting }}
296+
REPORTING_ENABLED: ${{ github.event.inputs.reporting == 'true' }}
297297

298298
steps:
299299
- name: Checkout repository
@@ -481,7 +481,7 @@ jobs:
481481
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
482482
uses: ./.github/actions/run-hostbusters-prime-ui-checks
483483
with:
484-
reporting: env.REPORTING_ENABLED
484+
reporting: ${{ env.REPORTING_ENABLED }}
485485

486486
- name: Cleanup Infrastructure
487487
if: always()
@@ -536,7 +536,7 @@ jobs:
536536
environment: prime
537537
env:
538538
HOSTNAME_PREFIX: "gha-prime-211"
539-
REPORTING_ENABLED: ${{ github.event.inputs.reporting }}
539+
REPORTING_ENABLED: ${{ github.event.inputs.reporting == 'true' }}
540540

541541
steps:
542542
- name: Checkout repository
@@ -737,7 +737,7 @@ jobs:
737737
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
738738
uses: ./.github/actions/run-hostbusters-prime-ui-checks
739739
with:
740-
reporting: env.REPORTING_ENABLED
740+
reporting: ${{ env.REPORTING_ENABLED }}
741741

742742
- name: Cleanup Infrastructure
743743
if: always()

.github/workflows/rancher-upgrade-cluster-provisioning.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
REPORTING_ENABLED: >-
5353
${{
5454
github.event_name == 'schedule' ||
55-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
55+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
5656
}}
5757
5858
steps:
@@ -321,7 +321,7 @@ jobs:
321321
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
322322
uses: ./.github/actions/run-hostbusters-provisioning
323323
with:
324-
reporting: env.REPORTING_ENABLED
324+
reporting: ${{ env.REPORTING_ENABLED }}
325325

326326
- name: Cleanup Infrastructure
327327
if: always()
@@ -390,7 +390,7 @@ jobs:
390390
REPORTING_ENABLED: >-
391391
${{
392392
github.event_name == 'schedule' ||
393-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
393+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
394394
}}
395395
396396
steps:
@@ -659,7 +659,7 @@ jobs:
659659
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
660660
uses: ./.github/actions/run-hostbusters-provisioning
661661
with:
662-
reporting: env.REPORTING_ENABLED
662+
reporting: ${{ env.REPORTING_ENABLED }}
663663

664664
- name: Cleanup Infrastructure
665665
if: always()
@@ -728,7 +728,7 @@ jobs:
728728
REPORTING_ENABLED: >-
729729
${{
730730
github.event_name == 'schedule' ||
731-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
731+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
732732
}}
733733
734734
steps:
@@ -1007,7 +1007,7 @@ jobs:
10071007
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
10081008
uses: ./.github/actions/run-hostbusters-provisioning
10091009
with:
1010-
reporting: env.REPORTING_ENABLED
1010+
reporting: ${{ env.REPORTING_ENABLED }}
10111011

10121012
- name: Cleanup Infrastructure
10131013
if: always()
@@ -1076,7 +1076,7 @@ jobs:
10761076
REPORTING_ENABLED: >-
10771077
${{
10781078
github.event_name == 'schedule' ||
1079-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
1079+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
10801080
}}
10811081
10821082
steps:
@@ -1355,7 +1355,7 @@ jobs:
13551355
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
13561356
uses: ./.github/actions/run-hostbusters-provisioning
13571357
with:
1358-
reporting: env.REPORTING_ENABLED
1358+
reporting: ${{ env.REPORTING_ENABLED }}
13591359

13601360
- name: Cleanup Infrastructure
13611361
if: always()

.github/workflows/recurring-dualstack-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
REPORTING_ENABLED: >-
5959
${{
6060
github.event_name == 'schedule' ||
61-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
61+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
6262
}}
6363
6464
steps:
@@ -306,7 +306,7 @@ jobs:
306306
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
307307
with:
308308
suite: ${{ matrix.suite }}
309-
reporting: env.REPORTING_ENABLED
309+
reporting: ${{ env.REPORTING_ENABLED }}
310310
uses: ./.github/actions/run-hostbusters-dualstack-test-suites
311311

312312
- name: Cleanup Infrastructure
@@ -381,7 +381,7 @@ jobs:
381381
REPORTING_ENABLED: >-
382382
${{
383383
github.event_name == 'schedule' ||
384-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
384+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
385385
}}
386386
387387
steps:
@@ -629,7 +629,7 @@ jobs:
629629
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
630630
with:
631631
suite: ${{ matrix.suite }}
632-
reporting: env.REPORTING_ENABLED
632+
reporting: ${{ env.REPORTING_ENABLED }}
633633
uses: ./.github/actions/run-hostbusters-dualstack-test-suites
634634

635635
- name: Cleanup Infrastructure

.github/workflows/recurring-ipv6-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
REPORTING_ENABLED: >-
5959
${{
6060
github.event_name == 'schedule' ||
61-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
61+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
6262
}}
6363
6464
steps:
@@ -307,7 +307,7 @@ jobs:
307307
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
308308
with:
309309
suite: ${{ matrix.suite }}
310-
reporting: env.REPORTING_ENABLED
310+
reporting: ${{ env.REPORTING_ENABLED }}
311311
uses: ./.github/actions/run-hostbusters-ipv6-test-suites
312312

313313
- name: Cleanup Infrastructure
@@ -382,7 +382,7 @@ jobs:
382382
REPORTING_ENABLED: >-
383383
${{
384384
github.event_name == 'schedule' ||
385-
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting)
385+
(github.event_name == 'workflow_dispatch' && github.event.inputs.reporting == 'true' )
386386
}}
387387
388388
steps:
@@ -631,7 +631,7 @@ jobs:
631631
QASE_PROJECT_ID: ${{ secrets.HB_QASE_PROJECT_ID }}
632632
with:
633633
suite: ${{ matrix.suite }}
634-
reporting: env.REPORTING_ENABLED
634+
reporting: ${{ env.REPORTING_ENABLED }}
635635
uses: ./.github/actions/run-hostbusters-ipv6-test-suites
636636

637637
- name: Cleanup Infrastructure

0 commit comments

Comments
 (0)