Skip to content

Commit

Permalink
fix: Test Next Release
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkProminic committed Jul 19, 2023
1 parent 71626da commit d9ca27c
Show file tree
Hide file tree
Showing 22 changed files with 8 additions and 9 deletions.
Empty file modified .github/workflows/publish.yml.old
100644 → 100755
Empty file.
Empty file modified .github/workflows/release.yml
100644 → 100755
Empty file.
5 changes: 4 additions & 1 deletion .github/workflows/stale.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@ jobs:
days-before-stale: 30
days-before-close: 7
operations-per-run: 500
exempt-issue-labels: 'will pick this up at some point'
exempt-issue-labels: 'will pick this up at some point'

git config --global user.email "mark.gilbert@prominic.net"
git config --global user.name "MarkProminic"
Empty file modified .github/workflows/validate.yml
100644 → 100755
Empty file.
Empty file modified .release-please-manifest.json
100644 → 100755
Empty file.
Empty file modified CHANGELOG.md
100644 → 100755
Empty file.
Empty file modified CONTRIBUTING.md
100644 → 100755
Empty file.
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified README.md
100644 → 100755
Empty file.
Empty file modified custom_components/ha_easgen/EAS.py
100644 → 100755
Empty file.
Empty file modified custom_components/ha_easgen/EventCodes.py
100644 → 100755
Empty file.
Empty file modified custom_components/ha_easgen/PlayWav.py
100644 → 100755
Empty file.
Empty file modified custom_components/ha_easgen/__init__.py
100644 → 100755
Empty file.
9 changes: 2 additions & 7 deletions custom_components/ha_easgen/config_flow.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,8 @@
import re
import socket
import requests
import sys

from typing import Optional

from EASGen import EASGen
from pydub.playback import play
from datetime import datetime, timedelta, timezone
from dateutil import parser

import voluptuous as vol

from homeassistant import config_entries
Expand All @@ -20,6 +13,7 @@
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.typing import DiscoveryInfoType

from .const import DEFAULT_PORT, DOMAIN # pylint: disable=unused-import

_LOGGER = logging.getLogger(__name__)

Expand Down Expand Up @@ -91,6 +85,7 @@ async def async_step_user(self, user_input=None):
{
vol.Required(CONF_NAME): cv.string,
vol.Required(CONF_HOST): cv.string,
vol.Required(CONF_PORT, default=DEFAULT_PORT): cv.positive_int,
}
),
errors=errors,
Expand Down
3 changes: 2 additions & 1 deletion custom_components/ha_easgen/const.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

DOMAIN = "ha_easgen"
ICON = "mdi:flash-alert"
DEFAULT_NAME = "Emergency Alert System"
DEFAULT_NAME = "Emergency Alert System"
DEFAULT_PORT = 6680
Empty file modified custom_components/ha_easgen/icon.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified custom_components/ha_easgen/icon@2x.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified custom_components/ha_easgen/manifest.json
100644 → 100755
Empty file.
Empty file modified custom_components/ha_easgen/version.py
100644 → 100755
Empty file.
Empty file modified hacs.json
100644 → 100755
Empty file.
Empty file modified info.md
100644 → 100755
Empty file.
Empty file modified release-please-config.json
100644 → 100755
Empty file.

0 comments on commit d9ca27c

Please sign in to comment.