Movatterモバイル変換


[0]ホーム

URL:


ContentsMenuExpandLight modeDark modeAuto light/dark, in light modeAuto light/dark, in dark modeSkip to content
python-gitlabv6.1.0
python-gitlabv6.1.0

Table of Contents

Back to top

Protected branches

You can define a list of protected branch names on a repository or group.Names can use wildcards (*).

References

Examples

Get the list of protected branches for a project or group:

p_branches=project.protectedbranches.list()p_branches=group.protectedbranches.list()

Get a single protected branch:

p_branch=project.protectedbranches.get('main')p_branch=group.protectedbranches.get('main')

Update a protected branch:

p_branch.allow_force_push=Truep_branch.save()

Create a protected branch:

p_branch=project.protectedbranches.create({'name':'*-stable','merge_access_level':gitlab.const.AccessLevel.DEVELOPER,'push_access_level':gitlab.const.AccessLevel.MAINTAINER})

Create a protected branch with more granular access control:

p_branch=project.protectedbranches.create({'name':'*-stable','allowed_to_push':[{"user_id":99},{"user_id":98}],'allowed_to_merge':[{"group_id":653}],'allowed_to_unprotect':[{"access_level":gitlab.const.AccessLevel.MAINTAINER}]})

Delete a protected branch:

project.protectedbranches.delete('*-stable')# orp_branch.delete()
On this page

[8]ページ先頭

©2009-2025 Movatter.jp