Add pull_request trigger to workflow files for k3d, kind, kustomize, and microk8s

This commit is contained in:
cedricve
2025-11-26 13:42:35 +01:00
parent c522cf1f51
commit 48bbc7da4e
4 changed files with 5 additions and 1 deletions

View File

@@ -2,9 +2,10 @@ name: Deploy on k3d
on:
workflow_dispatch:
pull_request:
schedule:
- cron: "0 0 * * *" # This will run the workflow every day at midnight UTC
jobs:
deploy:
runs-on: ${{ matrix.os }}

View File

@@ -2,6 +2,7 @@ name: Deploy on kind
on:
workflow_dispatch:
pull_request:
schedule:
- cron: "0 0 * * *" # This will run the workflow every day at midnight UTC

View File

@@ -2,6 +2,7 @@ name: Deploy on kind using Kustmize
on:
workflow_dispatch:
pull_request:
schedule:
- cron: "0 0 * * *" # This will run the workflow every day at midnight UTC

View File

@@ -1,6 +1,7 @@
name: Deploy on microk8s
on:
workflow_dispatch:
pull_request:
schedule:
- cron: "0 0 * * *" # This will run the workflow every day at midnight UTC
jobs: