Skip to content

Commit

Permalink
not trigger an action if latest equals current
Browse files Browse the repository at this point in the history
  • Loading branch information
kokyhm committed Sep 29, 2024
1 parent f4176d0 commit 2918add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/dependency_updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ def process_component(component, component_data, repo_metadata, session):
logging.info(f'Component {component} version discrepancy, current={current_version}, latest={processed_latest_version}')

# CI - write data and return
if args.ci_check:
if args.ci_check and current_version != latest_version:
version_diff[component] = {
# used in dependecy-check.yml workflow
'current_version' : current_version,
Expand Down

0 comments on commit 2918add

Please sign in to comment.