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: 5 additions & 1 deletion .github/workflows/docs-preview-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ on:
description: 'Branch (eg. my-feature-branch)'
required: true
type: string
check_id:
description: 'The ID of the check that triggered this workflow'
required: false
type: string

permissions:
contents: write
Expand Down Expand Up @@ -62,7 +66,7 @@ jobs:

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

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