refactor(core): Remove unused execution status warning (no-changelog) (#9759)

This commit is contained in:
Iván Ovejero
2024-06-17 13:00:04 +02:00
committed by GitHub
parent f7352b6a8f
commit d615711728
2 changed files with 2 additions and 3 deletions

View File

@@ -7,7 +7,6 @@ export const ExecutionStatusList = [
'success',
'unknown',
'waiting',
'warning',
] as const;
export type ExecutionStatus = (typeof ExecutionStatusList)[number];