-
Notifications
You must be signed in to change notification settings - Fork 136
54 lines (47 loc) · 1.22 KB
/
dc-tests.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
49
50
51
52
53
54
# This workflow is for testing Helm charts in KinD clusters
name: DC apps tests in KinD
on:
schedule:
- cron: '0 3 */2 * *' # schedule the test to run every second day at 3:00am
push:
branches:
- main
paths:
- 'src/main/charts/bamboo/**'
- 'src/main/charts/bamboo-agent/**'
- 'src/main/charts/bitbucket/**'
- 'src/main/charts/confluence/**'
- 'src/main/charts/jira/**'
- 'src/main/charts/crowd/**'
workflow_dispatch:
pull_request_target:
types: [ labeled ]
jobs:
jira:
uses: ./.github/workflows/kind.yaml
with:
dc_app: jira
secrets:
JIRA_LICENSE: "${{ secrets.JIRA_LICENSE }}"
confluence:
uses: ./.github/workflows/kind.yaml
with:
dc_app: confluence
secrets:
CONFLUENCE_LICENSE: "${{ secrets.TF_VAR_CONFLUENCE_LICENSE }}"
bitbucket:
uses: ./.github/workflows/kind.yaml
with:
dc_app: bitbucket
secrets:
BITBUCKET_LICENSE: "${{ secrets.TF_VAR_BITBUCKET_LICENSE }}"
bamboo:
uses: ./.github/workflows/kind.yaml
with:
dc_app: bamboo
secrets:
BAMBOO_LICENSE: "${{ secrets.TF_VAR_BAMBOO_LICENSE }}"
crowd:
uses: ./.github/workflows/kind.yaml
with:
dc_app: crowd