Skip to content

Commit

Permalink
fix(core): gitlab should be included in ci-workflow ci schema (#14652)
Browse files Browse the repository at this point in the history
Fixes #14632

(cherry picked from commit 2ee9ac6)
  • Loading branch information
StalkAltan authored and FrozenPandaz committed Jan 27, 2023
1 parent 9c157be commit 77314d0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"ci": {
"type": "string",
"description": "CI provider.",
"enum": ["github", "circleci", "azure", "bitbucket-pipelines"],
"enum": [
"github",
"circleci",
"azure",
"bitbucket-pipelines",
"gitlab"
],
"x-prompt": {
"message": "What is your target CI provider?",
"type": "list",
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace/src/generators/ci-workflow/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"ci": {
"type": "string",
"description": "CI provider.",
"enum": ["github", "circleci", "azure", "bitbucket-pipelines"],
"enum": ["github", "circleci", "azure", "bitbucket-pipelines", "gitlab"],
"x-prompt": {
"message": "What is your target CI provider?",
"type": "list",
Expand Down

0 comments on commit 77314d0

Please sign in to comment.