a5670af745
* Keycloak CI workflow refactoring Closes #15861 * Update testsuite/integration-arquillian/tests/base/testsuites/base-suite.sh Co-authored-by: Hynek Mlnařík <hmlnarik@users.noreply.github.com> * Update testsuite/integration-arquillian/tests/base/testsuites/suite.sh Co-authored-by: Hynek Mlnařík <hmlnarik@users.noreply.github.com> * Update testsuite/integration-arquillian/tests/base/testsuites/suite.sh Co-authored-by: Hynek Mlnařík <hmlnarik@users.noreply.github.com> * Update CodeQL actions Co-authored-by: Hynek Mlnařík <hmlnarik@users.noreply.github.com>
16 lines
383 B
YAML
16 lines
383 B
YAML
name: Mark job as successful
|
|
description: Workaround for GitHub Actions not setting conclusion on jobs passed through needs
|
|
|
|
outputs:
|
|
conclusion:
|
|
description: Conclusion
|
|
value: ${{ steps.check.outputs.conclusion }}
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- id: check
|
|
name: Set success
|
|
shell: bash
|
|
run: |
|
|
echo "conclusion=success" >> $GITHUB_OUTPUT
|