We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4a40e35 + 36ceac7 commit d13681dCopy full SHA for d13681d
.github/workflows/pythonpackage.yml
@@ -26,12 +26,13 @@ jobs:
26
- name: Print head git commit message
27
id: get_commit_message
28
run: |
29
- COMMIT_MSG=${{ github.event.head_commit.message }}
30
- if [[ -z $COMMIT_MSG ]]; then
+ if [[ -z "$COMMIT_MSG" ]]; then
31
COMMIT_MSG=$(git show -s --format=%s)
32
fi
33
echo $COMMIT_MSG
34
echo "::set-output name=commit_message::$COMMIT_MSG"
+ env:
35
+ COMMIT_MSG: ${{ github.event.head_commit.message }}
36
37
build:
38
needs: check_if_skip
0 commit comments