tobiasbueschel / git-is-branch-protected

🔒Checks whether current Git branch is protected

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

git-is-branch-protected

Build Status version downloads codecov

semantic-release MIT License

Checks whether current Git branch is protected

Install

$ npm install git-is-branch-protected

Usage

const gitIsBranchProtected = require('git-is-branch-protected')

(async () => {
	// currently on "master" branch
	await gitIsBranchProtected()
	//=> true

	await gitIsBranchProtected('master')
	//=> true

	await gitIsBranchProtected('develop')
	//=> true

	await gitIsBranchProtected('feat/add-something')
	//=> false

	await gitIsBranchProtected('develop', ['master'])
	//=> false

	await gitIsBranchProtected('develop', ['master, develop'])
	//=> true

	await gitIsBranchProtected('DEVELOP', ['master, develop'], { caseSensitive: true })
	//=> false
})()

API

gitIsBranchProtected([currentBranch], [protectedBranches], [options])

Returns true or false indicating whether a branch is protected.

currentBranch

Type: string

The name of the current branch. Defaults to check the actual branch name of the current directory.

protectedBranches

Type: Array
Default: ['master', 'develop']

Which branches you would like to protect. By default, master and develop are protected.

options

Type: Object

caseSensitive

Type: boolean
Default: false

Whether the check should be performed case sensitive.

Related

License

MIT © Tobias Büschel

About

🔒Checks whether current Git branch is protected

License:MIT License


Languages

Language:JavaScript 100.0%