Skip to content

Instantly share code, notes, and snippets.

View vaishnavn02's full-sized avatar

Vaishnav Nugala vaishnavn02

View GitHub Profile
@joshjohanning
joshjohanning / github-delete-branch-protection.ps1
Created January 27, 2021 12:08
Delete GitHub Branch Protection Rules based upon pattern
##############################################################
# Delete branch protection rules
##############################################################
[CmdletBinding()]
param (
[parameter (Mandatory = $true)][string]$PersonalAccessToken,
[parameter (Mandatory = $true)][string]$GitHubOrg,
[parameter (Mandatory = $true)][string]$GitHubRepo,
[parameter (Mandatory = $true)][string]$PatternToDelete # If you want to delete all branch protection rules that start with "test", pass in "test*"