Skip to content

Commit 6128a7c

Browse files
committed
.github: Fixed if statements for activity check.
1 parent adb309e commit 6128a7c

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/chart-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
chart-tests:
3232
needs: activity-check
33-
if: steps.activity.outputs.is_active == 'true'
33+
if: needs.activity-check.outputs.is_active == 'true'
3434
runs-on: ubuntu-latest
3535
# runs-on: [self-hosted, linux]
3636
strategy:

.github/workflows/fingerprint-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
3434
fingerprint-tests:
3535
needs: activity-check
36-
if: steps.activity.outputs.is_active == 'true'
36+
if: needs.activity-check.outputs.is_active == 'true'
3737
runs-on: ubuntu-latest
3838
strategy:
3939
matrix:

.github/workflows/module-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
module-tests:
3232
needs: activity-check
33-
if: steps.activity.outputs.is_active == 'true'
33+
if: needs.activity-check.outputs.is_active == 'true'
3434
runs-on: ubuntu-latest
3535
strategy:
3636
matrix:

.github/workflows/other-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
other-tests:
3232
needs: activity-check
33-
if: steps.activity.outputs.is_active == 'true'
33+
if: needs.activity-check.outputs.is_active == 'true'
3434
runs-on: ubuntu-latest
3535
strategy:
3636
matrix:

.github/workflows/statistical-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
statistical-tests:
3232
needs: activity-check
33-
if: steps.activity.outputs.is_active == 'true'
33+
if: needs.activity-check.outputs.is_active == 'true'
3434
runs-on: ubuntu-latest
3535
# runs-on: [self-hosted, linux]
3636
strategy:

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
unit-tests:
3232
needs: activity-check
33-
if: steps.activity.outputs.is_active == 'true'
33+
if: needs.activity-check.outputs.is_active == 'true'
3434
runs-on: ubuntu-latest
3535
strategy:
3636
matrix:

.github/workflows/validation-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
validation-tests:
3232
needs: activity-check
33-
if: steps.activity.outputs.is_active == 'true'
33+
if: needs.activity-check.outputs.is_active == 'true'
3434
runs-on: ubuntu-latest
3535
# runs-on: [self-hosted, linux]
3636
strategy:

0 commit comments

Comments
 (0)