You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-8Lines changed: 9 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ branch.
8
8
9
9
## Version
10
10
11
-
`v1.2.0` (uses [terraform-docs] v0.18.0, which is supported and tested on Terraform
11
+
`v1.2.1` (uses [terraform-docs] v0.18.0, which is supported and tested on Terraform
12
12
version 0.11+ and 0.12+ but may work for others.)
13
13
14
14
### Upgrade v0 to v1
@@ -42,7 +42,7 @@ jobs:
42
42
ref: ${{ github.event.pull_request.head.ref }}
43
43
44
44
- name: Render terraform docs inside the README.md and push changes back to PR branch
45
-
uses: terraform-docs/gh-actions@v1.2.0
45
+
uses: terraform-docs/gh-actions@v1.2.1
46
46
with:
47
47
working-dir: .
48
48
output-file: README.md
@@ -72,6 +72,7 @@ jobs:
72
72
| git-push-sign-off | If true it will sign-off commit | `false` | false |
73
73
| git-push-user-email | If empty the no-reply email of the GitHub Actions bot will be used (i.e. `github-actions[bot]@users.noreply.github.com`) | `""` | false |
74
74
| git-push-user-name | If empty the name of the GitHub Actions bot will be used (i.e. `github-actions[bot]`) | `""` | false |
75
+
| git-sub-dir | Subdirectory that terraform code is checked out into | `""` | false |
| output-file | File in module directory where the docs should be placed | `README.md` | false |
77
78
| output-format | terraform-docs format to generate content (see [all formats](https://github.com/terraform-docs/terraform-docs/blob/master/docs/FORMATS\_GUIDE.md)) (ignored if `config-file` is set) | `markdown table` | false |
@@ -147,7 +148,7 @@ To enable you need to ensure a few things first:
147
148
148
149
```yaml
149
150
- name: Generate TF Docs
150
-
uses: terraform-docs/gh-actions@v1.2.0
151
+
uses: terraform-docs/gh-actions@v1.2.1
151
152
with:
152
153
working-dir: .
153
154
```
@@ -156,7 +157,7 @@ To enable you need to ensure a few things first:
156
157
157
158
```yaml
158
159
- name: Generate TF Docs
159
-
uses: terraform-docs/gh-actions@v1.2.0
160
+
uses: terraform-docs/gh-actions@v1.2.1
160
161
with:
161
162
working-dir: .,example1,example3/modules/test
162
163
```
@@ -165,7 +166,7 @@ To enable you need to ensure a few things first:
165
166
166
167
```yaml
167
168
- name: Generate TF docs
168
-
uses: terraform-docs/gh-actions@v1.2.0
169
+
uses: terraform-docs/gh-actions@v1.2.1
169
170
with:
170
171
atlantis-file: atlantis.yaml
171
172
```
@@ -174,7 +175,7 @@ To enable you need to ensure a few things first:
174
175
175
176
```yaml
176
177
- name: Generate TF docs
177
-
uses: terraform-docs/gh-actions@v1.2.0
178
+
uses: terraform-docs/gh-actions@v1.2.1
178
179
with:
179
180
find-dir: examples/
180
181
```
@@ -183,13 +184,13 @@ To enable you need to ensure a few things first:
183
184
184
185
```yaml
185
186
- name: Generate TF docs
186
-
uses: terraform-docs/gh-actions@v1.2.0
187
+
uses: terraform-docs/gh-actions@v1.2.1
187
188
with:
188
189
working-dir: examples/
189
190
recursive: true
190
191
recursive-path: modules
191
192
```
192
193
193
-
Complete examples can be found [here](https://github.com/terraform-docs/gh-actions/tree/v1.2.0/examples).
194
+
Complete examples can be found [here](https://github.com/terraform-docs/gh-actions/tree/v1.2.1/examples).
0 commit comments