diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 7d57b94..1d3773b 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -57,11 +57,12 @@ jobs: with: token: ${{ secrets.BOT_TOKEN }} # fetch-depth: '1' - - id: get_head_commit_title + - id: get-head-commit-title + name: get-title run: | echo "title=$(git log --format=%B -n 1 HEAD | head -n 1)" >> $GITHUB_OUTPUT cat $GITHUB_OUTPUT - - run: echo ${{ steps.get-commit-title.outputs.text }} + - run: echo ${{ steps.get-head-commit-title.outputs.title }} - uses: actions/setup-node@v3 with: node-version: '20.9.0' @@ -93,7 +94,7 @@ jobs: if: steps.has-changes.outputs.changes == 'true' run: | git add -A - git commit -a -m "documented ${{ steps.get-commit-title.outputs.text }}" + git commit -a -m "documented ${{ steps.get-head-commit-title.outputs.title }}" git push origin HEAD exit 1 schema: