Skip to content

Commit

Permalink
Added changed to accepted descriptor list (#1078)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasBrostrom authored Nov 11, 2023
1 parent 7b6619a commit 5cf2ed8
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions tools/checkPullRequestTitle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,16 @@ if [[ $string != *"Added"* ]]; then
if [[ $string != *"added"* ]]; then
if [[ $string != *"Fixed"* ]]; then
if [[ $string != *"fixed"* ]]; then
if [[ $string != *"Updated"* ]]; then
if [[ $string != *"updated"* ]]; then
if [[ $string != *"Improved"* ]]; then
if [[ $string != *"improved"* ]]; then
if [[ $string != *"Adjusted"* ]]; then
if [[ $string != *"adjusted"* ]]; then _throw "Missing descriptor [Added, Fixed, Improved, Adjusted, Updated,]"; fi
if [[ $string != *"Changed"* ]]; then
if [[ $string != *"changed"* ]]; then
if [[ $string != *"Updated"* ]]; then
if [[ $string != *"updated"* ]]; then
if [[ $string != *"Improved"* ]]; then
if [[ $string != *"improved"* ]]; then
if [[ $string != *"Adjusted"* ]]; then
if [[ $string != *"adjusted"* ]]; then _throw "Missing descriptor [Added, Fixed, Changed, Improved, Adjusted, Updated]"; fi
fi
fi
fi
fi
fi
Expand Down

0 comments on commit 5cf2ed8

Please sign in to comment.