Check Home Assistant Configuration
workflow "Check Home Assistant Configuration" {
on = "push"
resolves = ["STABLE", "RC", "DEV"]
}
action "STABLE" {
uses = "ludeeus/action-ha-config-check@master"
env = {
ACTION_VERSION = "STABLE"
}
}
action "RC" {
uses = "ludeeus/action-ha-config-check@master"
env = {
ACTION_VERSION = "RC"
}
}
action "DEV" {
uses = "ludeeus/action-ha-config-check@master"
env = {
ACTION_VERSION = "DEV"
ACTION_ALLOW_FAIL = "True"
}
}
REQUIRE GITHUB_TOKEN
| ENV | description |
|---|---|
ACTION_VERSION |
STABLE, RC or DEV. |
ACTION_CONFIG_PATH |
Relative path to your configuration if not in the root of the repository. |
ACTION_ALLOW_FAIL |
Set to True to allow failure. |