Skip to content

Commit

Permalink
[skip release] Test
Browse files Browse the repository at this point in the history
  • Loading branch information
devtonhere committed Dec 10, 2024
1 parent 0562f2a commit c7a9dac
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0

- name: Show Commit Message
id: showcommit
run: git log -1 --pretty=format:"%s"

- name: Compare Commit Message
id: comparecommit
run: if [[ $(git log -1 --pretty=format:"%s") =~ "[skip release]" ]]; then echo 'match'; else echo 'no match'; fi


- name: Set up JDK 8
uses: actions/setup-java@v3
with:
Expand Down

0 comments on commit c7a9dac

Please sign in to comment.