我如何为 AWS CodeCommit 中的用户禁用 "Create pull request" 按钮?
How i can disable "Create pull request" button for users in AWS CodeCommit?
我在 AWS CodeCommit 中有两个小组。一份用于 Admin
,一份用于 Developers
。
我想限制只有管理员可以创建从 develop 到 master 分支以及从 master 到 develop 的拉取请求。但我想允许所有开发人员从功能分支向开发分支发出拉取请求。有什么想法吗?
感谢您的帮助!
您可以创建 IAM 角色或策略来拒绝此操作。参见 codecommit:CreatePullRequest and Creating policy guide. For restricting pull requests for a specific branches, you can add a Condition
to the policy, see example here in section Create a conditional policy in IAM。
我在 AWS CodeCommit 中有两个小组。一份用于 Admin
,一份用于 Developers
。
我想限制只有管理员可以创建从 develop 到 master 分支以及从 master 到 develop 的拉取请求。但我想允许所有开发人员从功能分支向开发分支发出拉取请求。有什么想法吗?
感谢您的帮助!
您可以创建 IAM 角色或策略来拒绝此操作。参见 codecommit:CreatePullRequest and Creating policy guide. For restricting pull requests for a specific branches, you can add a Condition
to the policy, see example here in section Create a conditional policy in IAM。