OBJECT
ProtectedBranch
A repository protected branch.
link GraphQL Schema definition
- type ProtectedBranch implements Node {
- # Check if authorizing actors for pushing is turned on.
- Boolean! :
- # Check if authorizing dismissers is turned on.
- Boolean! :
- # Check to see what level deletion blocking is being enforced.
- Int! :
- # Check to see what level force pushing is being enfored.
- Int! :
- # The creator of this protected branch.
- User! :
- ID! :
- # Identifies the name of the protected branch.
- String! :
- # Check to see what level reviews are being enforced.
- Int! :
- # The repository associated with this protected branch.
- Repository! :
- # Check to see what level merge statuses are being enforced.
- Int! :
- # A list review dismissal allowances for this protected branch.
- #
- # Arguments
- # first: Returns the first _n_ elements from the list.
- # after: Returns the elements in the list that come after the
- # specified global ID.
- # last: Returns the last _n_ elements from the list.
- # before: Returns the elements in the list that come before the
- # specified global ID.
- (
- Int, :
- String, :
- Int, :
- String :
- ): ReviewDismissalAllowanceConnection!
- # Check if required status checks is turned on.
- Boolean! :
- }