See the new site: https://postgresisenough.dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Get current branch name | |
| branch_name="$(git rev-parse --symbolic-full-name --abbrev-ref HEAD)" | |
| # Replace or add the board name abbreviations here | |
| jira_abbreviations=("JIRA_BOARD_ABBREVIATION") | |
| # Check if current branch is a feature branch i.e. starts with a ticket number | |
| check_is_issue_branch () { | |
| for abbrv in "${jira_abbreviations[@]}" |
OlderNewer