Skip to content

Commit

Permalink
Merge pull request #279 from danobot/develop
Browse files Browse the repository at this point in the history
ci: fix
  • Loading branch information
danobot authored Jul 16, 2022
2 parents 6c9b83b + cb85c04 commit 4e7b00a
Show file tree
Hide file tree
Showing 8 changed files with 10,482 additions and 80 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ jobs:
uses: zcong1993/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
# The name of the base branch that the head will be merged into
base: master
# The head to merge. This can be a branch name or a commit SHA1
head: develop
- uses: actions/checkout@v1
- name: Push to master
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# :wave: Introduction
Entity Controller (EC) is an implementation of "When This, Then That for x amount of time" using a finite state machine that ensures basic automations do not interfere with the rest of your home automation setup. This component encapsulates common automation scenarios into a neat package that can be configured easily and reused throughout your home. Traditional automations would need to be duplicated _for each instance_ in your config. The use cases for this component are endless because you can use any entity as input and outputs (there is no restriction to motion sensors and lights).

**Latest stable version is `v9.2.10` tested on Home Assistant `2022.6.7`.**
**Latest stable version is `v9.4.0` tested on Home Assistant `2022.7.4`.**

[Entity Controller Documentation](https://danobot.github.io/ec-docs/)

Expand Down
4 changes: 2 additions & 2 deletions custom_components/entity_controller/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"""
Entity controller component for Home Assistant.
Maintainer: Daniel Mason
Version: v9.4.0
Version: v9.5.0
Project Page: https://danielbkr.net/projects/entity-controller/
Documentation: https://github.com/danobot/entity-controller
"""
Expand Down Expand Up @@ -106,7 +106,7 @@



VERSION = '9.4.0'
VERSION = '9.5.0'


_LOGGER = logging.getLogger(__name__)
Expand Down
31 changes: 16 additions & 15 deletions custom_components/entity_controller/manifest.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
{
"domain": "entity_controller",
"name": "Entity Controller",
"documentation": "https://github.com/danobot/entity-controller/blob/master/README.md",
"requirements": [
"transitions==0.8.8"
],
"dependencies": [
],
"after_dependencies": [
"light",
"script"
],
"codeowners": ["@danobot"],
"homeassistant": "0.117.0",
"version": "9.4.0"
"domain": "entity_controller",
"name": "Entity Controller",
"documentation": "https://github.com/danobot/entity-controller/blob/master/README.md",
"requirements": [
"transitions==0.8.8"
],
"dependencies": [],
"after_dependencies": [
"light",
"script"
],
"codeowners": [
"@danobot"
],
"homeassistant": "2022.7.4",
"version": "9.5.0"
}
2 changes: 1 addition & 1 deletion hacs.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "Entity Controller",
"homeassistant": "0.117.0"
"homeassistant": "2022.7.4"
}
Loading

0 comments on commit 4e7b00a

Please sign in to comment.