Skip to content

Commit

Permalink
Merge pull request #41 from vim-jp/embed-commitid-in-commitlog
Browse files Browse the repository at this point in the history
Embed commit IDs in commit log
  • Loading branch information
k-takata authored Oct 18, 2024
2 parents 322a291 + e25d1d6 commit 3f33fd0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ jobs:
cd ..
# install
cp work/target/html/doc/*.html target
- name: Check commit IDs
id: commitid
run: |
echo "vim=$(git -C work/vim rev-parse HEAD)" >> $GITHUB_OUTPUT
echo "vim_faq=$(git -C work/vim_faq rev-parse HEAD)" >> $GITHUB_OUTPUT
- name: Commit updated master branch
uses: EndBug/add-and-commit@v9
with:
Expand All @@ -48,3 +53,7 @@ jobs:
Generated by GitHub workflow ${{ github.run_id }}
https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
Used commits:
https://github.com/vim/vim/commit/${{ steps.commitid.outputs.vim }}
https://github.com/chrisbra/vim_faq/commit/${{ steps.commitid.outputs.vim_faq }}

0 comments on commit 3f33fd0

Please sign in to comment.