Skip to content

Commit af15b3a

Browse files
committed
fix(): Fixing the scripts
1 parent a8207f1 commit af15b3a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ commit: ## Uses staged files and some questions to help you write commit message
3131
git status --short | grep '^[MARCDT]' && \
3232
echo "${RESET}" && \
3333
export PS3="${BLUE}Tag? ${RESET}" && \
34-
export tags=(fix docs feat refactor test build chore) && \
34+
export tags=(chore feat fix refactor perf style doc test ci build revert) && \
3535
select tag in "$${tags[@]}"; do \
3636
if [[ " $${tags[@]} " =~ " $$tag " ]]; then \
3737
export TAG=$$tag && break; \
@@ -60,4 +60,4 @@ commit: ## Uses staged files and some questions to help you write commit message
6060
echo "${RESET}$${BODY}" && \
6161
echo "" && \
6262
eval "$$COMMIT_CMD"; \
63-
fi
63+
fi

0 commit comments

Comments
 (0)