We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 300364e commit dbe5a65Copy full SHA for dbe5a65
.github/workflows/docgen.yml
@@ -20,6 +20,9 @@ jobs:
20
- uses: actions/checkout@v2
21
with:
22
ref: ${{github.head_ref}}
23
+ - name: Get HEAD SHA
24
+ id: vars
25
+ run: echo "::set-output name=sha::$(git rev-parse --short HEAD)"
26
- name: Build Python Package
27
run: |
28
cp docker/WORKSPACE.docs WORKSPACE
@@ -32,7 +35,7 @@ jobs:
32
35
- uses: stefanzweifel/git-auto-commit-action@v4
33
36
34
37
# Required
- commit_message: "docs: [Automated] Regenerating documenation from $GITHUB_SHA"
38
+ commit_message: "docs: [Automated] Regenerating documenation for ${{ steps.vars.outputs.sha }}"
39
commit_options: "--no-verify --signoff"
40
file_pattern: docs/
41
commit_user_name: TRTorch Github Bot
0 commit comments