-
Notifications
You must be signed in to change notification settings - Fork 0
231 lines (193 loc) · 6.8 KB
/
checks.yml
File metadata and controls
231 lines (193 loc) · 6.8 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
name: Opentofu-Checks
on:
push:
branches: [ main ]
pull_request:
types: [opened, reopened, synchronize]
branches:
- main
permissions:
contents: read
pull-requests: write
jobs:
changed-files:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.changed-files.outputs.all_changed_files }}
any_changed: ${{ steps.changed-files.outputs.any_changed }}
steps:
- name: 'Checkout'
uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.sha }}
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
with:
dir_names: true
matrix: true
quotepath: false
files: |
**/**.tf
files_ignore: |
**/examples/**
**/tests/**
**/docs/**
- name: List all changed files
run: echo '${{ steps.changed-files.outputs.all_changed_files }}'
tflint:
runs-on: ubuntu-latest
needs: [changed-files ]
if: ${{needs.changed-files.outputs.any_changed == 'true'}}
strategy:
matrix:
dirs: ${{ fromJSON(needs.changed-files.outputs.matrix) }}
max-parallel: 4
steps:
- name: Checkout
uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.sha }}
- uses: actions/cache@v4
name: Cache plugin dir
with:
path: ~/.tflint.d/plugins
key: ubuntu-latest-tflint-${{ hashFiles('.tflint.hcl') }}
- uses: terraform-linters/setup-tflint@v4
name: Setup TFLint
with:
tflint_wrapper: true
- name: Show version
run: tflint --version
- name: Init TFLint
run: |
export TFLINT_CONFIG=$(realpath .tflint.hcl)
tflint --init --config $TFLINT_CONFIG
env:
# https://github.com/terraform-linters/tflint/blob/master/docs/user-guide/plugins.md#avoiding-rate-limiting
GITHUB_TOKEN: ${{ github.token }}
- name: Run TFLint
id: tflint
run: |
export TFLINT_CONFIG=$(realpath .tflint.hcl)
tflint -f compact --chdir ${{ matrix.dirs }} --config $TFLINT_CONFIG
- name: Post TFLint comment
uses: actions/github-script@v6
if: ${{ github.event_name == 'pull_request' && always() }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const { data: comments } = await github.rest.issues.listComments({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
})
const botComment = comments.find(comment => {
return comment.user.type === 'Bot' && comment.body.includes('TFLint Analysis for `${{ matrix.dirs }}`')
})
const output = `#### TFLint Analysis for \`${{ matrix.dirs }}\` 🧐\`${{ steps.tflint.outcome }}\`
<details><summary>TFLint Output</summary>
\`\`\`\n
${{ steps.tflint.outputs.stdout }}
\`\`\`
</details>
*Pusher: @${{ github.actor }}, Action: \`${{ github.event_name }}\`, Workflow: \`${{ github.workflow }}\`*`;
if (botComment) {
github.rest.issues.updateComment({
owner: context.repo.owner,
repo: context.repo.repo,
comment_id: botComment.id,
body: output
})
} else {
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: output
})
}
console.log('${{ steps.tflint.outputs.exitcode }}')
opentofu:
runs-on: ubuntu-latest
needs: [changed-files ]
if: ${{needs.changed-files.outputs.any_changed == 'true'}}
strategy:
matrix:
dirs: ${{ fromJSON(needs.changed-files.outputs.matrix) }}
max-parallel: 4
steps:
- name: 'Checkout'
uses: actions/checkout@v5
with:
ref: ${{github.event.pull_request.head.sha }}
- uses: opentofu/setup-opentofu@v1
with:
tofu_version_file: .opentofu-version
- name: OpenTofu fmt
id: fmt
run: tofu -chdir=${{ matrix.dirs }} fmt -check
- name: OpenTofu Init
if: always()
id: init
run: tofu -chdir=${{ matrix.dirs }} init
- name: OpenTofu Validate
if: always()
id: validate
run: tofu -chdir=${{ matrix.dirs }} validate -no-color
- name: OpenTofu Test
if: always()
id: test
run: tofu -chdir=${{ matrix.dirs }} test -no-color
- uses: actions/github-script@v6
if: ${{ github.event_name == 'pull_request' && always() }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
// 1. Retrieve existing bot comments for the PR
const { data: comments } = await github.rest.issues.listComments({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
})
const botComment = comments.find(comment => {
return comment.user.type === 'Bot' && comment.body.includes('OpenTofu automated tests for module in \`${{ matrix.dirs }}\` directory')
})
// 2. Prepare format of the comment
const output = `#### OpenTofu automated tests for module in \`${{ matrix.dirs }}\` directory
#### OpenTofu Initialization ⚙️\`${{ steps.init.outcome }}\`
#### OpenTofu Validation 🤖\`${{ steps.validate.outcome }}\`
<details><summary>Validation Output</summary>
\`\`\`\n
${{ steps.validate.outputs.stdout }}
\`\`\`
</details>
#### OpenTofu Format 🖌\`${{ steps.fmt.outcome }}\`
<details><summary>Format Check Output</summary>
\`\`\`\n
${{ steps.fmt.outputs.stdout }}
\`\`\`
</details>
#### OpenTofu Tests 📖\`${{ steps.test.outcome }}\`
<details><summary>OpenTofu Test Output</summary>
\`\`\`\n
${{ steps.test.outputs.stdout }}
\`\`\`
</details>
*Pusher: @${{ github.actor }}, Action: \`${{ github.event_name }}\`, Working Directory: \`${{ matrix.dirs }}\`, Workflow: \`${{ github.workflow }}\`*`;
// 3. If we have a comment, update it, otherwise create a new one
if (botComment) {
github.rest.issues.updateComment({
owner: context.repo.owner,
repo: context.repo.repo,
comment_id: botComment.id,
body: output
})
} else {
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: output
})
}