We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c67a844 commit 8963505Copy full SHA for 8963505
entrypoint.sh
@@ -7,11 +7,14 @@ run_commit_check(){
7
args=""
8
if [[ "$MESSAGE" == "true" ]]; then
9
args="$args --message"
10
- elif [[ "$BRANCH" == "true" ]]; then
+ fi
11
+ if [[ "$BRANCH" == "true" ]]; then
12
args="$args --branch"
- elif [[ "$AUTHOR_NAME" == "true" ]]; then
13
14
+ if [[ "$AUTHOR_NAME" == "true" ]]; then
15
args="$args --author-name"
- elif [[ "$AUTHOR_EMAIL" == "true" ]]; then
16
17
+ if [[ "$AUTHOR_EMAIL" == "true" ]]; then
18
args="$args --author-email"
19
fi
20
0 commit comments