mirror of
https://github.com/ivuorinen/ghaw-auditor.git
synced 2026-01-26 03:14:09 +00:00
24 lines
452 B
YAML
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
|