Skip to content

Commit

Permalink
CI: fix commit msg extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
misialq committed Dec 20, 2024
1 parent 077b5e5 commit f40badf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
- name: Get last commit
id: get-commit-msg
run: |
echo "$(git log --pretty=%B -n 1 --skip 1)"
echo "commit-msg=$(git log --pretty=%B -n 1 --skip 1)" >> $GITHUB_OUTPUT
commit_msg=$(git log --pretty=%B -n 1 --skip 1 2>/dev/null)
echo "commit-msg=$commit_msg" >> $GITHUB_OUTPUT
- name: Install dependencies
run: python -m pip install requests yq
Expand Down

0 comments on commit f40badf

Please sign in to comment.