Skip to content

Commit

Permalink
fix: ref miss in github action PR check
Browse files Browse the repository at this point in the history
  • Loading branch information
wuwentao committed Jul 22, 2024
1 parent 0b17bf9 commit e43ec38
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions custom_components/hacs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ async def _async_initialize_integration(
if hacs.core.ha_version is None:
hacs.core.ha_version = AwesomeVersion(HAVERSION)

## Legacy GitHub client
# Legacy GitHub client
hacs.github = GitHub(
hacs.configuration.token,
clientsession,
Expand All @@ -96,7 +96,7 @@ async def _async_initialize_integration(
},
)

## New GitHub client
# New GitHub client
hacs.githubapi = GitHubAPI(
token=hacs.configuration.token,
session=clientsession,
Expand Down
1 change: 0 additions & 1 deletion custom_components/hacs/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
from .repositories import REPOSITORY_CLASSES
from .repositories.base import HACS_MANIFEST_KEYS_TO_EXPORT, REPOSITORY_KEYS_TO_EXPORT
from .utils.file_system import async_exists
from .utils.json import json_loads
from .utils.logger import LOGGER
from .utils.queue_manager import QueueManager
from .utils.store import async_load_from_store, async_save_to_store
Expand Down
4 changes: 2 additions & 2 deletions custom_components/hacs/repositories/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ async def common_validate(self, ignore_issues: bool = False) -> None:

# Get the content of hacs.json
if RepositoryFile.HACS_JSON in [x.filename for x in self.tree]:
if manifest := await self.async_get_hacs_json():
if manifest := await self.get_hacs_json(version=self.ref):
self.repository_manifest = HacsManifest.from_dict(manifest)
self.data.update_data(
self.repository_manifest.to_dict(),
Expand Down Expand Up @@ -539,7 +539,7 @@ async def common_update(self, ignore_issues=False, force=False, skip_releases=Fa

# Get the content of hacs.json
if RepositoryFile.HACS_JSON in [x.filename for x in self.tree]:
if manifest := await self.async_get_hacs_json():
if manifest := await self.get_hacs_json(version=self.ref):
self.repository_manifest = HacsManifest.from_dict(manifest)
self.data.update_data(
self.repository_manifest.to_dict(),
Expand Down
4 changes: 2 additions & 2 deletions custom_components/hacs/repositories/integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ async def validate_repository(self):
self.content.path.remote = f"custom_components/{name}"

# Get the content of manifest.json
if manifest := await self.async_get_integration_manifest():
if manifest := await self.async_get_integration_manifest(ref=self.ref):
try:
self.integration_manifest = manifest
self.data.authors = manifest.get("codeowners", [])
Expand Down Expand Up @@ -133,7 +133,7 @@ async def update_repository(self, ignore_issues=False, force=False):
self.content.path.remote = f"custom_components/{name}"

# Get the content of manifest.json
if manifest := await self.async_get_integration_manifest():
if manifest := await self.async_get_integration_manifest(ref=self.ref):
try:
self.integration_manifest = manifest
self.data.authors = manifest.get("codeowners", [])
Expand Down

0 comments on commit e43ec38

Please sign in to comment.