fix(change_log): skip checking if develop is part of the detected version
Signed-off-by: Akhil Narang <me@akhilnarang.dev>
This commit is contained in:
parent
a01e779a74
commit
d7b74e9d30
1 changed files with 3 additions and 0 deletions
|
|
@ -184,6 +184,9 @@ def check_for_update():
|
|||
branch_version = (
|
||||
apps[app]["branch_version"].split(" ", 1)[0] if apps[app].get("branch_version", "") else ""
|
||||
)
|
||||
if "develop" in branch_version:
|
||||
return updates
|
||||
|
||||
instance_version = Version(branch_version or apps[app].get("version"))
|
||||
|
||||
github_version, org_name = check_release_on_github(owner, repo, instance_version)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue