Commit 203fb20
committed
fix(scripts): always exit 0 from check-aws-updates.py
The script was returning exit code 1 when updates were found, which
caused the GitHub Actions workflow to fail at that step, preventing
subsequent steps from executing (commit tracking, issue creation,
summary).
The script correctly sets output variables (updates_found, update_count)
to communicate results, but the non-zero exit code halted the workflow
before those variables could be used.
Now the script always returns 0 (success) and uses the output variables
to indicate whether updates were found, allowing the workflow to
complete as designed.1 parent c964237 commit 203fb20
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
267 | 267 | | |
268 | 268 | | |
269 | 269 | | |
270 | | - | |
| 270 | + | |
271 | 271 | | |
272 | 272 | | |
273 | 273 | | |
| |||
0 commit comments