mirror of
https://github.com/home-assistant/core.git
synced 2025-12-27 06:28:31 +00:00
* Add prettier (in pre-commit and CI) * Make all file prettier * Change order * Add to Azure Pipelines * Fix a YAML file prettier caught as invalid * Remove flow mapping using curly braces from all YAML service files
26 lines
581 B
YAML
26 lines
581 B
YAML
# Describes the format for available python_script services
|
|
|
|
reload:
|
|
description: Reload all the available scripts
|
|
|
|
turn_on:
|
|
description: Turn on script
|
|
fields:
|
|
entity_id:
|
|
description: Name(s) of script to be turned on.
|
|
example: "script.arrive_home"
|
|
|
|
turn_off:
|
|
description: Turn off script
|
|
fields:
|
|
entity_id:
|
|
description: Name(s) of script to be turned off.
|
|
example: "script.arrive_home"
|
|
|
|
toggle:
|
|
description: Toggle script
|
|
fields:
|
|
entity_id:
|
|
description: Name(s) of script to be toggled.
|
|
example: "script.arrive_home"
|