forked from carpenike/k8s-gitops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskfile.yml
36 lines (31 loc) · 909 Bytes
/
Taskfile.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
# https://taskfile.dev
version: '3'
tasks:
render-templates:
desc: Render *.tmpl template files to actual files
silent: true
cmds:
- ./.github/scripts/render_templates.sh
preconditions:
- test -f ./.github/scripts/render_templates.sh
lint-scripts:
desc: Lint all script files in the repo
silent: true
cmds:
- ./.github/scripts/lint_scripts.sh
preconditions:
- test -f ./.github/scripts/lint_scripts.sh
lint-yaml:
desc: Lint all yaml files in the repo
silent: true
cmds:
- ./.github/scripts/lint_yaml.sh
preconditions:
- test -f ./.github/scripts/lint_yaml.sh
renovate:helm-releases:
desc: Create renovate annotations for HelmReleases
silent: true
cmds:
- ./.github/scripts/create-helmrelease-annotations.sh
preconditions:
- test -f ./.github/scripts/create-helmrelease-annotations.sh