Skip to content
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

流水线插件高级特性:即使前面有插件运行失败也运行,即使被取消也运行 #4775

Merged
merged 1 commit into from
Jul 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@ const optionConfigMixin = {
id: 'PRE_TASK_FAILED_BUT_CANCEL',
name: this.$t('storeMap.atomEvenFail')
},
{
id: 'PRE_TASK_FAILED_EVEN_CANCEL',
name: this.$t('storeMap.atomEvenCancel')
},
{
id: 'PRE_TASK_FAILED_ONLY',
name: this.$t('storeMap.atomOnlyFail')
Expand Down
1 change: 1 addition & 0 deletions src/frontend/locale/pipeline/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -863,6 +863,7 @@
"atomRunCondition": "Run this task",
"atomPreSuc": "Run when all pre-plugins run successfully (including continue when failed)",
"atomEvenFail": "Even if a previous task has failed, unless the build was canceled",
"atomEvenCancel": "Run even if a previous plugin failed, and run even if it was cancelled",
"atomOnlyFail": "Only when a previous task has failed",
"varMatch": "run it when all the custom variables are macthed",
"varNotMatch": "Don‘t run it when all the custom variables are macthed",
Expand Down
1 change: 1 addition & 0 deletions src/frontend/locale/pipeline/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -866,6 +866,7 @@
"atomRunCondition": "何时运行本插件",
"atomPreSuc": "所有前置插件运行成功时运行(包括失败时继续)",
"atomEvenFail": "即使前面有插件运行失败也运行,除非被取消才不运行",
"atomEvenCancel": "即使前面有插件运行失败也运行,即使被取消也运行",
"atomOnlyFail": "只有前面有插件运行失败时才运行",
"varMatch": "自定义变量全部满足时才运行",
"varNotMatch": "自定义变量全部满足时不运行",
Expand Down