Skip to content

Commit 4c1208d

Browse files
authored
Merge branch 'main' into Use-.ref-in-version_to_download-if-force_branch-is-set
2 parents e30cdd7 + be95b44 commit 4c1208d

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

action/action.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,18 @@ async def validate_repository(hacs: HacsBase, repository: str, category: str, re
181181
if (repo := hacs.repositories.get_by_full_name(repository)) is None:
182182
error(f"Repository {repository} not loaded properly in HACS.")
183183

184-
output_in_group("data", json.dumps(repo.data.to_json(), indent=4))
184+
output_in_group(
185+
"data",
186+
json.dumps(
187+
{
188+
"data": repo.data.to_json(),
189+
"manifest": repo.repository_manifest.to_dict(),
190+
"category": category,
191+
"ref": ref,
192+
},
193+
indent=4,
194+
),
195+
)
185196

186197

187198
if __name__ == "__main__":

0 commit comments

Comments
 (0)