katiem0 / gh-branch-rules

GitHub CLI extension to list and update legacy Branch Protection Policies for repositories in an organization.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gh-branch-rules

A GitHub gh CLI extension to create a report containing branch protections for a single repository or list of repositories, as well as create branch protections from a file.

Installation

  1. Install the gh CLI - see the installation instructions.

  2. Install the extension:

    gh extension install katiem0/gh-branch-rules

For more information: gh extension install.

Usage

The gh-branch-rules extension supports GitHub.com and GitHub Enterprise Server, through the use of --hostname and the following commands:

$ gh branch-rules -h
List and update branch protection rules for repositories in an organization.

Usage:
  branch-rules [command]

Available Commands:
  list        Generate a report of branch protection rules for repositories.
  update      Create and/or update branch protection policies

Flags:
  -h, --help   help for branch-rules

Use "branch-rules [command] --help" for more information about a command.

List Branch Protection Policies

This extension will create a csv report of branch protection policies for specified repositories or all repositories in an organization.

$ gh branch-rules list -h
Generate a report of branch protection rules for a list of repositories

Usage:
  branch-rules list [flags] <organization> [repo ...]

Flags:
  -d, --debug                To debug logging
  -h, --help                 help for list
      --hostname string      GitHub Enterprise Server hostname (default "github.com")
  -o, --output-file string   Name of file to write CSV list to (default "BranchRules-20231214102016.csv")
  -t, --token string         GitHub Personal Access Token (default "gh auth token")

The output csv file contains the following information:

Click to Expand output csv file contents
Field NameDescription
RepositoryNameThe name of the repository where the data is extracted from
RepositoryIDThe `ID` associated with the Repository, for API usage
BranchProtectionRulePatternIdentifies the protection rule pattern
BranchProtectionRuleIdThe branch protection policy ID that is needed for updating policies
AllowsDeletionsIf the branch associated to the policy can be deleted
AllowsForcePushesIf force pushes are allowed on the branch
BlockCreationsIf branch creation matching the rule pattern is a protected operation
DismissesStaleReviewsIf new commits pushed to matching branches dismiss pull request review approvals
IsAdminEnforcedIf admins override branch protection
LockAllowsFetchAndMergeIf users can pull changes from upstream when the branch is locked. Set to `true` allows fork syncing. Set to false prevents fork syncing
LockBranchIf the branch is set as `read-only`. If this is `true`, users will not be able to push to the branch
RequireLastPushApprovalIf the most recent push must be approved by someone other than the person who pushed it
RequiredApprovingReviewCountNumber of approving reviews required to update matching branches
RequiresApprovingReviewsIf approving reviews are required to update matching branches
RequiresCodeOwnerReviewsIf reviews from code owners are required to update matching branches
RequiresCommitSignaturesIf commits are required to be signed
RequiresConversationResolutionIf conversations are required to be resolved before merging
RequiresDeploymentsIf this branch requires deployment to specific environments before merging
RequiresLinearHistoryIf merge commits are prohibited from being pushed to this branch
RequiresStatusChecksIf status checks are required to update matching branches
RequiresStrictStatusChecksIf branches are required to be up to date before merging
RestrictsPushesIf pushing to matching branches is restricted
RestrictsReviewDismissalsIf dismissal of pull request reviews is restricted

Update Branch Protection Policies

Branch protection policies for specified repositories defined in a required csv file for an organization.

$ gh branch-rules update -h
Update branch protection policies for repositories from a file.

Usage:
  branch-rules update [flags] <organization>

Flags:
  -d, --debug              To debug logging
  -f, --from-file string   Path and Name of CSV file to create branch protection policies from
  -h, --help               help for update
      --hostname string    GitHub Enterprise Server hostname (default "github.com")
  -t, --token string       GitHub personal access token for organization to write to (default "gh auth token")
Click to Expand required csv file contents
Field NameDescription
RepositoryNameThe name of the repository where the data is extracted from
RepositoryIDThe `ID` associated with the Repository, for API usage
BranchProtectionRulePatternIdentifies the protection rule pattern
BranchProtectionRuleIdThe branch protection policy ID that is needed for updating policies
AllowsDeletionsIf the branch associated to the policy can be deleted
AllowsForcePushesIf force pushes are allowed on the branch
BlockCreationsIf branch creation matching the rule pattern is a protected operation
DismissesStaleReviewsIf new commits pushed to matching branches dismiss pull request review approvals
IsAdminEnforcedIf admins override branch protection
LockAllowsFetchAndMergeIf users can pull changes from upstream when the branch is locked. Set to `true` allows fork syncing. Set to false prevents fork syncing
LockBranchIf the branch is set as `read-only`. If this is `true`, users will not be able to push to the branch
RequireLastPushApprovalIf the most recent push must be approved by someone other than the person who pushed it
RequiredApprovingReviewCountNumber of approving reviews required to update matching branches
RequiresApprovingReviewsIf approving reviews are required to update matching branches
RequiresCodeOwnerReviewsIf reviews from code owners are required to update matching branches
RequiresCommitSignaturesIf commits are required to be signed
RequiresConversationResolutionIf conversations are required to be resolved before merging
RequiresDeploymentsIf this branch requires deployment to specific environments before merging
RequiresLinearHistoryIf merge commits are prohibited from being pushed to this branch
RequiresStatusChecksIf status checks are required to update matching branches
RequiresStrictStatusChecksIf branches are required to be up to date before merging
RestrictsPushesIf pushing to matching branches is restricted
RestrictsReviewDismissalsIf dismissal of pull request reviews is restricted

About

GitHub CLI extension to list and update legacy Branch Protection Policies for repositories in an organization.

License:MIT License


Languages

Language:Go 100.0%