Skip to content

Commit

Permalink
fix: msg
Browse files Browse the repository at this point in the history
  • Loading branch information
ZakaryCode committed Nov 17, 2020
1 parent 1cbf23b commit afc25b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: echo "$GITHUB_CONTEXT"
- name: Get commit message
run: |
COMMIT_MESSAGE="$(git log --format=%B -n 1) ${{ github.event.after }}"
COMMIT_MESSAGE=$(git log --format=%B -n 1 ${{ github.event.after }})
echo "commitmsg=${COMMIT_MESSAGE}" >> $GITHUB_ENV
- name: Show commit message
run : echo "$commitmsg"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: echo "$GITHUB_CONTEXT"
- name: Get commit message
run: |
COMMIT_MESSAGE="$(git log --format=%B -n 1) ${{ github.event.after }}"
COMMIT_MESSAGE=$(git log --format=%B -n 1 ${{ github.event.after }})
echo "commitmsg=${COMMIT_MESSAGE}" >> $GITHUB_ENV
- name: Show commit message
run : echo "$commitmsg"
Expand Down

0 comments on commit afc25b5

Please sign in to comment.