title
This commit is contained in:
parent
1685e75a97
commit
7451f65032
|
@ -59,6 +59,9 @@ jobs:
|
||||||
node-version: '20.9.0'
|
node-version: '20.9.0'
|
||||||
- run: git checkout -b ${{ github.head_ref }}
|
- run: git checkout -b ${{ github.head_ref }}
|
||||||
- run: git pull origin ${{ github.head_ref }}
|
- run: git pull origin ${{ github.head_ref }}
|
||||||
|
- id: get-head-commit-title
|
||||||
|
name: get-title
|
||||||
|
run: echo "title=$(git log --format=%B -n 1 HEAD | head -n 1)" >> $GITHUB_OUTPUT
|
||||||
- run: rm -rf document
|
- run: rm -rf document
|
||||||
- run: mkdir document
|
- run: mkdir document
|
||||||
- uses: https://sigyl.com:3001/actions/ft-view-screen-document@main
|
- uses: https://sigyl.com:3001/actions/ft-view-screen-document@main
|
||||||
|
@ -85,7 +88,7 @@ jobs:
|
||||||
if: steps.has-changes.outputs.changes == 'true'
|
if: steps.has-changes.outputs.changes == 'true'
|
||||||
run: |
|
run: |
|
||||||
git add -A
|
git add -A
|
||||||
git commit -a -m "documented ${{ github.event.head_commit.message }}"
|
git commit -a -m "documented ${{ steps.get-head-commit-title.outputs.title }}"
|
||||||
git push origin HEAD
|
git push origin HEAD
|
||||||
exit 1
|
exit 1
|
||||||
schema:
|
schema:
|
||||||
|
|
|
@ -59,9 +59,7 @@ jobs:
|
||||||
# fetch-depth: '1'
|
# fetch-depth: '1'
|
||||||
- id: get-head-commit-title
|
- id: get-head-commit-title
|
||||||
name: get-title
|
name: get-title
|
||||||
run: |
|
run: echo "title=$(git log --format=%B -n 1 HEAD | head -n 1)" >> $GITHUB_OUTPUT
|
||||||
echo "title=$(git log --format=%B -n 1 HEAD | head -n 1)" >> $GITHUB_OUTPUT
|
|
||||||
cat $GITHUB_OUTPUT
|
|
||||||
- run: echo ${{ steps.get-head-commit-title.outputs.title }}
|
- run: echo ${{ steps.get-head-commit-title.outputs.title }}
|
||||||
- uses: actions/setup-node@v3
|
- uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue