We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7563d61 commit fad55c1Copy full SHA for fad55c1
.github/workflows/docs.yaml
@@ -8,7 +8,7 @@ on:
8
- "templates/**/*"
9
10
jobs:
11
- tfplugindocs:
+ tfplugindocs-generate:
12
# Always run if pull_request was triggered because of paths, but also run if someone commented /docs on a PR
13
if: github.event_name == 'pull_request' || (github.event.issue.pull_request && contains(github.event.comment.body, '/docs'))
14
runs-on: ubuntu-latest
@@ -20,11 +20,12 @@ jobs:
20
ref: ${{ github.event.pull_request.head.ref }}
21
- run: |
22
export PATH=$PATH:/home/runner/go/bin
23
- make docs
+ make docs-prepare
24
+ tfplugindocs generate
25
- name: Commit changes
26
uses: EndBug/[email protected]
27
with:
28
pull: "--ff"
- message: "Update Provider Docs"
29
+ message: "Update Terraform Provider Docs"
30
add: "docs/**/*.md"
31
default_author: github_actions
0 commit comments