We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Imagine this
end-to-end-tests: name: E2E - ${{ matrix.app }} needs: build runs-on: ubuntu-latest strategy: fail-fast: false matrix: app: ['tools', 'docs', 'app']
and the ci-gate
ci-gate
ci-gate: if: always() needs: - build - integration-tests - end-to-end-tests runs-on: Ubuntu-latest steps: - name: Check required jobs. uses: re-actors/alls-green@release/v1 with: jobs: ${{ toJSON(needs) }}
I'd like to be able to "allow-failed" the app part of end-to-end-tests. Is that possible?
app
end-to-end-tests
The text was updated successfully, but these errors were encountered:
You'll have to do this on the matrix definition level. It is technically impossible for this action to have visibility into how your jobs are set up.
Sorry, something went wrong.
I think there's an example of a "continue on fail" somewhere in the readme.
No branches or pull requests
Imagine this
and the
ci-gate
I'd like to be able to "allow-failed" the
app
part ofend-to-end-tests
. Is that possible?Upvote & Fund
The text was updated successfully, but these errors were encountered: