Skip to content

Commit

Permalink
.github: Fixed if statements for activity check.
Browse files Browse the repository at this point in the history
  • Loading branch information
levy committed May 26, 2023
1 parent adb309e commit 6128a7c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chart-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
chart-tests:
needs: activity-check
if: steps.activity.outputs.is_active == 'true'
if: needs.activity-check.outputs.is_active == 'true'
runs-on: ubuntu-latest
# runs-on: [self-hosted, linux]
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fingerprint-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
fingerprint-tests:
needs: activity-check
if: steps.activity.outputs.is_active == 'true'
if: needs.activity-check.outputs.is_active == 'true'
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/module-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
module-tests:
needs: activity-check
if: steps.activity.outputs.is_active == 'true'
if: needs.activity-check.outputs.is_active == 'true'
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/other-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
other-tests:
needs: activity-check
if: steps.activity.outputs.is_active == 'true'
if: needs.activity-check.outputs.is_active == 'true'
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/statistical-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
statistical-tests:
needs: activity-check
if: steps.activity.outputs.is_active == 'true'
if: needs.activity-check.outputs.is_active == 'true'
runs-on: ubuntu-latest
# runs-on: [self-hosted, linux]
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
unit-tests:
needs: activity-check
if: steps.activity.outputs.is_active == 'true'
if: needs.activity-check.outputs.is_active == 'true'
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validation-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
validation-tests:
needs: activity-check
if: steps.activity.outputs.is_active == 'true'
if: needs.activity-check.outputs.is_active == 'true'
runs-on: ubuntu-latest
# runs-on: [self-hosted, linux]
strategy:
Expand Down

0 comments on commit 6128a7c

Please sign in to comment.