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 bea0a62 commit 00a56d8Copy full SHA for 00a56d8
.github/workflows/check_terraform_docs.yml
@@ -23,7 +23,7 @@ env:
23
TERRAFORM_DOCS_VERSION: v0.20.0
24
25
jobs:
26
- check-tf-fmt:
+ check-tf-docs:
27
runs-on: ubuntu-latest
28
steps:
29
- name: Checkout
@@ -32,7 +32,7 @@ jobs:
32
- name: Find the modules
33
id: find_modules
34
run: |
35
- echo "MODULES=$(find modules/ -maxdepth 1 -type d -name 'terraform-*' | paste -sd,)" >> "$GITHUB_ENV"
+ echo "MODULES=$(find modules/ -mindepth 1 -maxdepth 1 -type d | paste -sd,)" >> "$GITHUB_ENV"
36
37
- name: Print list of modules
38
0 commit comments