Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/kind-cats.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ on:
schedule:
- cron: '0 6 * * *'
workflow_dispatch:
inputs:
fresh-validation:
Comment thread
modulo11 marked this conversation as resolved.
description: 'Use versions of cf-deployment from the develop branch'
type: boolean
required: false
default: false
pull_request:
branches:
- main
Expand Down Expand Up @@ -49,6 +55,14 @@ jobs:
KIND_VERSION: "0.32.0"
# renovate: dataSource=github-releases depName=helmfile/helmfile
HELMFILE_VERSION: "1.5.3"
- name: Use develop versions of cf-deployment
id: validation
if: steps.check_changes.outputs.skip != 'true' && github.event_name == 'workflow_dispatch' && github.event.inputs.fresh-validation == 'true'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip3 install -r scripts/requirements.txt
python3 scripts/sync-cf-deployment-versions.py --ref develop
- name: Run make up
if: steps.check_changes.outputs.skip != 'true'
run: |
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/kind-smoke.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ on:
type: boolean
required: false
default: true
fresh-validation:
description: 'Use versions of cf-deployment from the develop branch'
type: boolean
required: false
default: false
schedule:
- cron: '0 7 * * 1'

Expand Down Expand Up @@ -63,6 +68,14 @@ jobs:
KIND_VERSION: "0.32.0"
# renovate: dataSource=github-releases depName=helmfile/helmfile
HELMFILE_VERSION: "1.5.3"
- name: Use develop versions of cf-deployment
id: pre_validation
if: steps.check_changes.outputs.skip != 'true' && github.event_name == 'workflow_dispatch' && github.event.inputs.fresh-validation == 'true'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip3 install -r scripts/requirements.txt
python3 scripts/sync-cf-deployment-versions.py --ref develop
- name: Run make up (default)
if: steps.check_changes.outputs.skip != 'true' && github.event_name == 'pull_request'
run: make up
Expand Down
Loading