Skip to content

Commit f44bdd2

Browse files
authored
Merge pull request #69 from itsmostafa/fix/workflow-exit-code
fix(scripts): always exit 0 from check-aws-updates.py
2 parents c964237 + 203fb20 commit f44bdd2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/check-aws-updates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def main():
267267
for update in all_updates:
268268
print(f" - [{update['service']}] {update['title']}")
269269

270-
return 0 if not all_updates else 1
270+
return 0
271271

272272

273273
if __name__ == "__main__":

0 commit comments

Comments
 (0)