We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 322a291 + e25d1d6 commit 3f33fd0Copy full SHA for 3f33fd0
.github/workflows/generate.yml
@@ -39,6 +39,11 @@ jobs:
39
cd ..
40
# install
41
cp work/target/html/doc/*.html target
42
+ - name: Check commit IDs
43
+ id: commitid
44
+ run: |
45
+ echo "vim=$(git -C work/vim rev-parse HEAD)" >> $GITHUB_OUTPUT
46
+ echo "vim_faq=$(git -C work/vim_faq rev-parse HEAD)" >> $GITHUB_OUTPUT
47
- name: Commit updated master branch
48
uses: EndBug/add-and-commit@v9
49
with:
@@ -48,3 +53,7 @@ jobs:
53
Generated by GitHub workflow ${{ github.run_id }}
54
50
55
https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
56
+
57
+ Used commits:
58
+ https://github.com/vim/vim/commit/${{ steps.commitid.outputs.vim }}
59
+ https://github.com/chrisbra/vim_faq/commit/${{ steps.commitid.outputs.vim_faq }}
0 commit comments