Skip to content

Commit 18865e4

Browse files
Merge pull request #6 from fullstackzach/another-test-branch
bad commit
2 parents 5a4b51b + 8b69736 commit 18865e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/scripts/commit-checker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ BRANCH_COMMITS=$(git rev-list ${BRANCH_MERGE_BASE}..HEAD)
2424

2525
# Check every commit message since ancestor for regex match
2626
for commit in $BRANCH_COMMITS; do
27-
CURRENT_COMMIT_MSG=$(git log --max-count=1 --format=%B $commit | tr '[a-z]' '[A-Z]')
27+
COMMIT_MSG_UPPER=$(git log --max-count=1 --format=%B $commit | tr '[a-z]' '[A-Z]')
2828

2929
if echo $COMMIT_MSG_UPPER | grep -iqE "$skip_regex"; then
3030
echo "************"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# gh-actions-playground
22

3-
test 23
3+
test 2345

0 commit comments

Comments
 (0)