-
Notifications
You must be signed in to change notification settings - Fork 179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat!: make delete
directive non-strict by default
#3498
Conversation
✅ Deploy Preview for docs-kargo-io ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3498 +/- ##
==========================================
+ Coverage 52.25% 52.26% +0.01%
==========================================
Files 290 290
Lines 26307 26314 +7
==========================================
+ Hits 13747 13754 +7
Misses 11810 11810
Partials 750 750 ☔ View full report in Codecov by Sentry. |
800a0cb
to
929d292
Compare
This makes a `delete` step succeed when a file or directory that is attempted to be removed already does not exist, instead of failing. In case this behavior is undesired, and the promotion has to fail when the path does not exist, the `strict` configuration option can be set to `true`. Signed-off-by: Hidde Beydals <hidde@hhh.computer>
929d292
to
5018e44
Compare
Signed-off-by: Hidde Beydals <hidde@hhh.computer> (cherry picked from commit 7b9b9e5)
Successfully created backport PR for |
Signed-off-by: Hidde Beydals <hidde@hhh.computer> (cherry picked from commit 7b9b9e5)
Fixes: #3497
This makes a
delete
step succeed when a file or directory that isattempted to be removed already does not exist, instead of failing.
In case this behavior is undesired, and the promotion has to fail
when the path does not exist, the
strict
configuration option canbe set to
true
.