-
Notifications
You must be signed in to change notification settings - Fork 16
48 lines (37 loc) · 985 Bytes
/
ci.yml
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
name: Continuous Integration
concurrency:
group: ci-${{ github.event.number }}
cancel-in-progress: true
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
schedule:
- cron: "31 1,12 * * *"
push:
branches:
- main
pull_request:
branches:
- main
jobs:
shellcheck:
name: Shellcheck
uses: ./.github/workflows/shellcheck.yml
tf-check:
name: Terraform Check
uses: ./.github/workflows/tf-check.yml
markdownlint:
name: Markdownlint
uses: ./.github/workflows/markdownlint.yml
todo:
if: github.event_name == 'push'
name: TODO
uses: ./.github/workflows/todo.yml
update-readme:
if: github.event_name == 'push'
name: Update README
uses: ./.github/workflows/generate-readme.yml
pr-review:
if: github.event_name == 'pull_request' && github.event.pull_request.draft == false
name: Pull Request Validation
uses: ./.github/workflows/pr-review.yml