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 db3a070 commit e5ef3b9Copy full SHA for e5ef3b9
.github/workflows/docs-preview-create.yml
@@ -19,6 +19,10 @@ on:
19
description: 'Branch (eg. my-feature-branch)'
20
required: true
21
type: string
22
+ check_id:
23
+ description: 'The ID of the check that triggered this workflow'
24
+ required: false
25
+ type: string
26
27
permissions:
28
contents: write
@@ -62,7 +66,7 @@ jobs:
62
66
63
67
- name: Push
64
68
id: push
65
- run: git add -A && git commit -m "sync docs" && git push -u origin ${{ env.BRANCH }} --force
69
+ run: git add -A && git commit -m "sync docs for check run ${{ inputs.check_id }}" && git push -u origin ${{ env.BRANCH }} --force
70
71
- name: Request preview comment
72
uses: peter-evans/repository-dispatch@v3
0 commit comments