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.
1 parent e8672f2 commit a433797Copy full SHA for a433797
.github/workflows/build.yml
@@ -47,8 +47,12 @@ jobs:
47
uses: actions/checkout@v2
48
with:
49
ref: ${{ env.HEAD_COMMIT }}
50
+ - name: Setup tmate session
51
+ uses: mxschmitt/action-tmate@v3
52
- name: Get commit message
- run: echo "COMMIT_MESSAGE=$(git log -n 1 --pretty=format:%s $(git rev-parse $GITHUB_HEAD_REF))" >> $GITHUB_ENV
53
+ run: |
54
+ git rev-parse $GITHUB_HEAD_REF
55
+ echo "COMMIT_MESSAGE=$(git log -n 1 --pretty=format:%s $(git rev-parse $GITHUB_HEAD_REF))" >> $GITHUB_ENV
56
- name: "BRANCH: ${{ github.ref_name }}"
57
run: echo ""
58
- name: "COMMIT: ${{ env.COMMIT_MESSAGE }}"
0 commit comments