-
Notifications
You must be signed in to change notification settings - Fork 24
75 lines (64 loc) · 1.99 KB
/
documentation.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: Generate terraform docs
on:
pull_request:
branches: [ 'main' ]
jobs:
docs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
module:
- authorize-private-service
- bucket-events
- cloudevent-broker
- cloudevent-trigger
- cloudevent-recorder
- regional-go-service
- regional-service
- serverless-gclb
- networking
- dashboard/service
- dashboard/job
- dashboard/cloudevent-receiver
- prober
- cron
- configmap
- secret
- github-bots
- github-wif-provider
- github-gsa
- github-events
- workqueue
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: terraform-docs/gh-actions@aeae0038ed47a547e0c0fca5c059d3335f48fb25 # v1.3.0
with:
working-dir: modules/${{ matrix.module }}
output-file: README.md
output-method: inject
fail-on-diff: "true"
- if: failure()
run: cat modules/${{ matrix.module }}/README.md
conclusion:
permissions:
actions: read
needs: docs
runs-on: ubuntu-latest
if: always()
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- uses: technote-space/workflow-conclusion-action@45ce8e0eb155657ab8ccf346ade734257fd196a5 # v3.0.3
- if: ${{ env.WORKFLOW_CONCLUSION == 'success' }}
working-directory: /tmp
run: echo ${{ env.WORKFLOW_CONCLUSION }} && exit 0
- if: ${{ env.WORKFLOW_CONCLUSION == 'failure' }}
working-directory: /tmp
run: echo ${{ env.WORKFLOW_CONCLUSION }} && exit 1