Skip to content

Commit

Permalink
Merge pull request #171 from craibo/add-github-actions
Browse files Browse the repository at this point in the history
Add actions
  • Loading branch information
craibo authored Jul 2, 2024
2 parents c05cf6d + 923701e commit 36e78ca
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 6 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/hassfest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Validate with hassfest

on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"

jobs:
validate:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- uses: home-assistant/actions/hassfest@master
17 changes: 17 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Validate

on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"

jobs:
validate:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- name: HACS validation
uses: "hacs/action@main"
with:
category: "integration"
10 changes: 5 additions & 5 deletions custom_components/ha_strava/manifest.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"domain": "ha_strava",
"name": "Strava (Unofficial)",
"codeowners": ["@craibo"],
"config_flow": true,
"dependencies": [],
"dependencies": ["http"],
"documentation": "https://github.com/craibo/ha_strava",
"issue_tracker": "https://github.com/craibo/ha_strava/issues",
"domain": "ha_strava",
"iot_class": "cloud_polling",
"name": "Strava (Unofficial)",
"issue_tracker": "https://github.com/craibo/ha_strava/issues",
"requirements": ["aiofiles>=23.2.1", "aiohttp>=3.9.5", "voluptuous>=0.11.7"],
"version": "3.2.37"
"version": "3.2.38"
}
2 changes: 1 addition & 1 deletion hacs.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "Strava (Unofficial)",
"domains": ["sensor"]
"homeassistant": "2024.1.0"
}

0 comments on commit 36e78ca

Please sign in to comment.