Files
ghaw-auditor/tests/fixtures/action-with-defaults.yml
2025-10-19 09:52:13 +03:00

24 lines
452 B
YAML

---
name: 'Action with Various Defaults'
description: 'Tests different input default types'
inputs:
string-input:
description: 'String input'
default: 'hello'
boolean-input:
description: 'Boolean input'
default: true
number-input:
description: 'Number input'
default: 42
no-default:
description: 'Input without default'
required: true
runs:
using: composite
steps:
- run: echo "test"
shell: bash