Skip to content

Commit 7246126

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
2 parents e712640 + 6ab8f80 commit 7246126

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/lint_pr_title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,5 +87,5 @@ jobs:
8787
run: |
8888
echo "Pull request titles should follow stdlib's Git commit message conventions."
8989
echo "Linting pull request title..."
90-
make lint-commit-message GIT_COMMIT_MESSAGE="${{ github.event.pull_request.title }}"
90+
make lint-commit-message GIT_COMMIT_MESSAGE='${{ github.event.pull_request.title }}'
9191
timeout-minutes: 5

tools/make/lib/lint/git/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ endif
4343
# @param {string} GIT_COMMIT_MESSAGE - Git commit message text
4444
#
4545
# @example
46-
# make lint-commit-message GIT_COMMIT_MESSAGE="feat: add `foo/bar`"
46+
# make lint-commit-message GIT_COMMIT_MESSAGE='feat: add `foo/bar`'
4747
#/
4848
lint-commit-message:
4949
ifeq ($(GIT_COMMIT_LINTER), commitlint)
50-
$(QUIET) NODE_ENV="$(NODE_ENV)" NODE_PATH="$(NODE_PATH)" GIT_COMMIT_MESSAGE="$(GIT_COMMIT_MESSAGE)" $(MAKE) -f $(this_file) commitlint-message
50+
$(QUIET) NODE_ENV="$(NODE_ENV)" NODE_PATH="$(NODE_PATH)" GIT_COMMIT_MESSAGE='$(GIT_COMMIT_MESSAGE)' $(MAKE) -f $(this_file) commitlint-message
5151
endif
5252

5353
.PHONY: lint-commit-message

tools/make/lib/lint/git/commitlint.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ commitlint: $(NODE_MODULES) commitlint-init
9292
# @private
9393
#
9494
# @example
95-
# make commitlint-message
95+
# make commitlint-message GIT_COMMIT_MESSAGE='feat: add `foo/bar`'
9696
#/
9797
commitlint-message: $(NODE_MODULES) commitlint-init
98-
$(QUIET) ( printf "$(GIT_COMMIT_MESSAGE)" | "$(COMMITLINT)" $(COMMITLINT_FLAGS) ) || ( $(MAKE) -f $(this_file) commitlint-cleanup && exit 1 )
98+
$(QUIET) ( printf '$(GIT_COMMIT_MESSAGE)' | "$(COMMITLINT)" $(COMMITLINT_FLAGS) ) || ( $(MAKE) -f $(this_file) commitlint-cleanup && exit 1 )
9999
$(QUIET) $(MAKE) -f $(this_file) commitlint-cleanup
100100

101101
.PHONY: commitlint-message

0 commit comments

Comments
 (0)