# 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