Files
run-ansible-skydust/action.yml
2024-11-24 21:34:31 +01:00

21 lines
416 B
YAML

name: Run ansible playbook
description: An ansible runner
author: Skydust
# Define your inputs here.
inputs:
path:
description: The playbook's path
required: true
check_only:
description: Whether to only check without changes
required: false
default: "false"
runs:
using: docker
image: Dockerfile
env:
INPUT_PATH: ${{ inputs.path }}
INPUT_CHECK_ONLY: ${{ inputs.check_only }}