diff --git a/tools/checkPullRequestTitle.sh b/tools/checkPullRequestTitle.sh index 6b9862a49..2a447f6b7 100755 --- a/tools/checkPullRequestTitle.sh +++ b/tools/checkPullRequestTitle.sh @@ -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