Skip to content
Open
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
6 changes: 5 additions & 1 deletion .github/workflows/helm-publish.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
name: Publish Helm Chart

on:
pull_request:
branches:
- main
paths:
- 'deploy/helm/**'
push:
branches:
- main
paths:
- 'deploy/helm/**'
- '.github/workflows/helm-publish.yml'
workflow_dispatch:

env:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/integration-test-docker.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
name: Integration Test [Docker Compose]

on:
pull_request:
branches:
- main
paths-ignore:
- 'website/**'
- '**/*.md'
push:
branches:
- main
paths-ignore:
- 'website/**'
- '**/*.md'
workflow_dispatch: # Allow manual triggering

jobs:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/integration-test-dynamic-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@ on:
pull_request:
branches:
- main
paths-ignore:
- 'website/**'
- '**/*.md'
push:
branches:
- main
paths-ignore:
- 'website/**'
- '**/*.md'
workflow_dispatch: # Allow manual triggering

jobs:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/integration-test-helm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@ on:
push:
branches:
- main
paths-ignore:
- 'website/**'
- '**/*.md'
pull_request:
branches:
- main
paths-ignore:
- 'website/**'
- '**/*.md'
workflow_dispatch:

env:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/integration-test-k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@ on:
pull_request:
branches:
- main
paths-ignore:
- 'website/**'
- '**/*.md'
push:
branches:
- main
paths-ignore:
- 'website/**'
- '**/*.md'
workflow_dispatch: # Allow manual triggering

jobs:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/test-and-build.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
name: Test And Build

on:
pull_request:
branches:
- main
push:
branches:
- main
schedule:
# Run nightly at 2:00 AM UTC
- cron: "0 2 * * *"
workflow_dispatch: # Allow manual triggering
pull_request: # Run on all pull requests

jobs:
test-and-build:
Expand Down
Loading