mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-23 17:28:44 +00:00
Added 'SyncFail' to possible HookTypes in UI (#2153)
This commit is contained in:
parent
9a2e7ca190
commit
e94999b07d
1 changed files with 1 additions and 1 deletions
|
|
@ -61,7 +61,7 @@ export interface OperationState {
|
|||
finishedAt: models.Time;
|
||||
}
|
||||
|
||||
export type HookType = 'PreSync' | 'Sync' | 'PostSync' | 'Skip';
|
||||
export type HookType = 'PreSync' | 'Sync' | 'PostSync' | 'SyncFail' | 'Skip';
|
||||
|
||||
export interface RevisionMetadata {
|
||||
author: string;
|
||||
|
|
|
|||
Loading…
Reference in a new issue