Merge pull request 'fix: Add needs' (!184) from add-needs-to-docker-pipelines into main
Reviewed-on: #184 Reviewed-by: Constantin Simonis <constantin@simonis.lol>
This commit is contained in:
commit
b37e48da2e
1 changed files with 2 additions and 0 deletions
|
@ -77,6 +77,7 @@ jobs:
|
|||
validate-docker-frontend:
|
||||
runs-on: ubuntu-latest
|
||||
name: Docker frontend validation
|
||||
needs: changed_files
|
||||
if: ${{ needs.changed_files.outputs.frontend == 'true' || needs.changed_files.outputs.workflow == 'true' }}
|
||||
container:
|
||||
image: catthehacker/ubuntu:act-latest
|
||||
|
@ -93,6 +94,7 @@ jobs:
|
|||
validate-docker-backend:
|
||||
runs-on: ubuntu-latest
|
||||
name: Docker backend validation
|
||||
needs: changed_files
|
||||
if: ${{ needs.changed_files.outputs.backend == 'true' || needs.changed_files.outputs.workflow == 'true' }}
|
||||
container:
|
||||
image: catthehacker/ubuntu:act-latest
|
||||
|
|
Reference in a new issue