-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CodeAction to inline Tekton Task (#520)
* #486 CodeAction to inline Tekton Task Signed-off-by: Yevhen Vydolob <[email protected]> * Change label Signed-off-by: Yevhen Vydolob <[email protected]> * update progress notification Signed-off-by: Yevhen Vydolob <[email protected]> * add telemetry error log Signed-off-by: Yevhen Vydolob <[email protected]> * add check for annotations proprtie Signed-off-by: Yevhen Vydolob <[email protected]>
- Loading branch information
Showing
18 changed files
with
542 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
|
||
/*----------------------------------------------------------------------------------------------- | ||
* Copyright (c) Red Hat, Inc. All rights reserved. | ||
* Licensed under the MIT License. See LICENSE file in the project root for license information. | ||
*-----------------------------------------------------------------------------------------------*/ | ||
|
||
export enum TknElementType { | ||
DOCUMENT, | ||
PIPELINE, | ||
METADATA, | ||
PARAM, | ||
PARAMS, | ||
PIPELINE_SPEC, | ||
PIPELINE_RESOURCES, | ||
PIPELINE_RESOURCE, | ||
PIPELINE_TASKS, | ||
PIPELINE_TASK, | ||
PIPELINE_TASK_REF, | ||
VALUE, | ||
PARAM_SPECS, | ||
PARAM_SPEC, | ||
STRING_ARRAY, | ||
PIPELINE_WORKSPACES, | ||
PIPELINE_WORKSPACE, | ||
PIPELINE_TASK_CONDITIONS, | ||
PIPELINE_TASK_CONDITION, | ||
PIPELINE_TASK_INPUT_RESOURCES, | ||
PIPELINE_TASK_INPUT_RESOURCE, | ||
PIPELINE_TASK_INPUT_RESOURCE_FROM, | ||
PIPELINE_TASK_RUN_AFTER, | ||
PIPELINE_TASK_RESOURCES, | ||
PIPELINE_TASK_OUTPUTS_RESOURCE, | ||
PIPELINE_TASK_OUTPUTS_RESOURCES, | ||
PIPELINE_TASK_PARAMS, | ||
PIPELINE_TASK_WORKSPACE, | ||
PIPELINE_TASK_WORKSPACES, | ||
PIPELINE_TASK_WHEN, | ||
PIPELINE_TASK_WHEN_VALUES, | ||
EMBEDDED_TASK, | ||
PIPELINE_TASK_METADATA, | ||
TASK_RESULT, | ||
TASK_RESULTS, | ||
KEY | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.