mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-04-05 02:09:08 +00:00
Merge pull request #1179 from balena-io/1178-filter-before-patching-release-status
Ensure not marking successful releases as canceled
This commit is contained in:
commit
65ac35a93e
@ -204,6 +204,11 @@ async function cancelBuildIfNecessary(build: RemoteBuild): Promise<void> {
|
||||
await build.sdk.pine.patch({
|
||||
resource: 'release',
|
||||
id: build.releaseId,
|
||||
options: {
|
||||
$filter: {
|
||||
status: { $ne: 'success' },
|
||||
},
|
||||
},
|
||||
body: {
|
||||
status: 'cancelled',
|
||||
end_timestamp: Date.now(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user