mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +00:00
* conditional support for composite actions * Fix Conditional function evaluation * Push launch.json temporarily * Revert "Push launch.json temporarily" * rename context * Cleanup comments * fix success/failure functions to run based on pre/main steps * idea of step_status * change to use steps context, WIP * add inputs to possible if condition expressions * use action_status * pr cleanup * Added right stages * Test on stage in conditional functions * Fix naming and formatting * Fix tests * Add success and failure L0s * Remove comment * Remove whitespace * Undo formatting * Add L0 for step-if parsing * Add ADR Co-authored-by: Thomas Boop <thboop@github.com>
49 lines
1.3 KiB
YAML
49 lines
1.3 KiB
YAML
|
|
name: 'Conditional Composite'
|
|
description: 'Test composite run step conditionals'
|
|
inputs:
|
|
exit-code:
|
|
description: 'Action fails if set to non-zero'
|
|
default: '0'
|
|
outputs:
|
|
default:
|
|
description: "Did step run with default?"
|
|
value: ${{ steps.default-conditional.outputs.default }}
|
|
success:
|
|
description: "Did step run with success?"
|
|
value: ${{ steps.success-conditional.outputs.success }}
|
|
failure:
|
|
description: "Did step run with failure?"
|
|
value: ${{ steps.failure-conditional.outputs.failure }}
|
|
always:
|
|
description: "Did step run with always?"
|
|
value: ${{ steps.always-conditional.outputs.always }}
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- run: exit ${{ inputs.exit-code }}
|
|
shell: bash
|
|
|
|
- run: echo "::set-output name=default::true"
|
|
id: default-conditional
|
|
shell: bash
|
|
|
|
- run: echo "::set-output name=success::true"
|
|
id: success-conditional
|
|
shell: bash
|
|
if: success()
|
|
|
|
- run: echo "::set-output name=failure::true"
|
|
id: failure-conditional
|
|
shell: bash
|
|
if: failure()
|
|
|
|
- run: echo "::set-output name=always::true"
|
|
id: always-conditional
|
|
shell: bash
|
|
if: always()
|
|
|
|
- run: echo "failed"
|
|
shell: bash
|
|
if: ${{ inputs.exit-code == 1 && failure() }} |