Acuariano
Acuariano

Reputation: 498

Pull Requests in CodeCommit

Is there a similar concept or workaround for Pull Requests inside AWS CodeCommit? I'm trying to implement CI using a CodeCommit repository and help us avoid broken head in our repository (master branch should always compile and run all tests successfully).

Upvotes: 15

Views: 4662

Answers (3)

Ken Chu
Ken Chu

Reputation: 181

Still no such feature, but we can always follow some best practices for Git itself. Things like making changes in branches and only merge it to master after it passed unit tests and code review. This link provides some more details. It discussion was based on the ReviewBoard tool but you don't have to use it to apply the same approach for code review.

Upvotes: 1

Paige Phillips
Paige Phillips

Reputation: 297

Such a feature does not exist, at least yet. But I have passed your feature request to the team for further review and consideration. Your feedback is very much appreciated.

Paige@AWS

Upvotes: 23

Related Questions