Skip to content

Commit

Permalink
test skip-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
landmanbester committed Dec 11, 2024
1 parent eb1a15c commit f65a61d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ jobs:
- id: check
shell: bash
run: |
echo "DEBUG: Raw github.event.head_commit.message:"
echo "${{ toJSON(github.event.head_commit.message) }}"
echo "DEBUG: Length of message:"
echo -n "${{ github.event.head_commit.message }}" | wc -c
echo "DEBUG: Hexdump of message to see any hidden characters:"
echo -n "${{ github.event.head_commit.message }}" | xxd
message="${{ github.event.head_commit.message }}"
message="${message,,}" # Convert to lowercase for case-insensitive matching
Expand Down

0 comments on commit f65a61d

Please sign in to comment.