We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 70bd45d + 20c02e0 commit af905bfCopy full SHA for af905bf
1 file changed
.github/workflows/docker-image-Laravel.yml
@@ -129,6 +129,9 @@ jobs:
129
storage/logs/
130
build:
131
needs: [ laravel-tests ]
132
+ ## if one of the above jobs does not run, this job should start.
133
+ ## This job runs when upstream jobs are either successful or skipped, but not if any have failed.
134
+ if: ${{ always() && !contains(needs.*.result, 'failure') }}
135
runs-on: ubuntu-latest
136
# Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.
137
permissions:
0 commit comments