title
push / format (push) Successful in 40s Details
push / document (push) Successful in 1m21s Details
push / schema (push) Successful in 25s Details

This commit is contained in:
gilesb 2023-11-23 00:51:42 +00:00
parent 04839708ea
commit 1685e75a97
1 changed files with 4 additions and 3 deletions

View File

@ -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: