Add support for pull credentials on builds and build triggers
This commit is contained in:
parent
1fc3c922a9
commit
2006917e03
17 changed files with 355 additions and 37 deletions
|
@ -24,3 +24,6 @@ def parse_repository_name(f):
|
|||
|
||||
def format_robot_username(parent_username, robot_shortname):
|
||||
return '%s+%s' % (parent_username, robot_shortname)
|
||||
|
||||
def parse_robot_username(robot_username):
|
||||
return robot_username.split('+', 2)
|
||||
|
|
Reference in a new issue