Skip to content

Commit f7fb1d7

Browse files
committed
Add continue-on-error to image cleanup action
The action has a hard limit of 100 deletions per run and errors on the boundary. This prevents the job from reporting as failed while still cleaning up versions on each scheduled run.
1 parent ec4e22f commit f7fb1d7

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

.github/workflows/cleanup-images.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
package: [api, web, worker]
1818
steps:
1919
- uses: actions/delete-package-versions@v5
20+
continue-on-error: true # action has a 100/run limit and errors on the boundary
2021
with:
2122
package-name: taskwondo/${{ matrix.package }}
2223
package-type: container

0 commit comments

Comments
 (0)