chore: ジョブの実行条件を修正

This commit is contained in:
usbharu 2024-09-17 14:07:21 +09:00
parent 80a8a5dcee
commit acb9efdfef
No known key found for this signature in database
GPG Key ID: 95CBCF7046307B77
1 changed files with 2 additions and 2 deletions

View File

@ -326,7 +326,7 @@ jobs:
path: 'owl/build/reports/kover/owl.xml' path: 'owl/build/reports/kover/owl.xml'
coverage: coverage:
if: needs.change.outputs.core == 'true' || needs.change.outputs.activitypub == 'true' || needs.change.outputs.mastodon == 'true' || needs.change.outputs.owl == 'true' if: always() && (needs.change.outputs.core == 'true' || needs.change.outputs.activitypub == 'true' || needs.change.outputs.mastodon == 'true' || needs.change.outputs.owl == 'true')
needs: needs:
- change - change
- hideout-core-unit-test - hideout-core-unit-test
@ -355,7 +355,7 @@ jobs:
min-coverage-changed-files: 80 min-coverage-changed-files: 80
lint: lint:
if: needs.change.outputs.core == 'true' || needs.change.outputs.activitypub == 'true' || needs.change.outputs.mastodon == 'true' || needs.change.outputs.owl == 'true' if: always() && (needs.change.outputs.core == 'true' || needs.change.outputs.activitypub == 'true' || needs.change.outputs.mastodon == 'true' || needs.change.outputs.owl == 'true')
needs: needs:
- change - change
- hideout-core-setup - hideout-core-setup