Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docs-preview-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ on:
description: 'Branch (eg. my-feature-branch)'
required: true
type: string
check_id:
description: 'The ID of the check that triggered this workflow'
sha:
description: 'The commit SHA responsible for triggering this workflow'
required: false
type: string

Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:

- name: Push
id: push
run: git add -A && git commit -m "sync docs for check run ${{ inputs.check_id }}" && git push -u origin ${{ env.BRANCH }} --force
run: git add -A && git commit -m "sync docs for repo ${{ inputs.repo }}, pr ${{ inputs.pr }}, commit ${{ inputs.sha }}" && git push -u origin ${{ env.BRANCH }} --force

- name: Request preview comment
uses: peter-evans/repository-dispatch@v3
Expand Down