-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pipeline launch label support (#322)
* pipeline launch (simple) label support * fix: reflection config * fix: follow UI behaviour * fix: launch user can only use same labels as pipeline if any * fix: typo
- Loading branch information
1 parent
2893bdb
commit 654deaa
Showing
5 changed files
with
230 additions
and
0 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
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,20 @@ | ||
{ | ||
"labels": [ | ||
|
||
{ | ||
"id": 1, | ||
"name": "LabelOne", | ||
"value": null, | ||
"resource": false, | ||
"isDefault": false | ||
}, | ||
{ | ||
"id": 2, | ||
"name": "LabelTwo", | ||
"value": null, | ||
"resource": false, | ||
"isDefault": false | ||
} | ||
], | ||
"totalsize": 2 | ||
} |