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 b254a56 commit 0dbb855Copy full SHA for 0dbb855
.github/workflows/render-docs.yml
@@ -50,6 +50,13 @@ jobs:
50
contents: write
51
steps:
52
- uses: actions/checkout@v4
53
+ if: github.event_name != 'pull_request'
54
+ - uses: actions/checkout@v4
55
+ if: github.event_name == 'pull_request'
56
+ with:
57
+ repository: ${{ github.event.pull_request.head.repo.full_name }}
58
+ ref: ${{ github.event.pull_request.head.ref }}
59
+
60
- name: Install doxygen dependencies
61
shell: bash
62
run: |
@@ -96,7 +103,7 @@ jobs:
96
103
${{ inputs.debug == true && '--debug ' || '' }}
97
104
98
105
- name: Commit Docs
99
- if: inputs.commit
106
+ if: inputs.commit == true
100
107
uses: EndBug/add-and-commit@v9
101
108
with:
102
109
add: "${{ inputs.target-path }}"
0 commit comments