From 3d5efa2694373d19b8c9d7260ed0c3f7fbf2301e Mon Sep 17 00:00:00 2001 From: cdiener Date: Thu, 17 Apr 2025 14:28:33 +0200 Subject: [PATCH 1/2] fix: change default branch for workflow trigger condition to main --- .github/workflows/test-k8s.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-k8s.yml b/.github/workflows/test-k8s.yml index a6a94ba..ea64a0c 100644 --- a/.github/workflows/test-k8s.yml +++ b/.github/workflows/test-k8s.yml @@ -5,12 +5,12 @@ on: paths: - k8s/** - Tiltfile - branches: [master] + branches: [main] push: paths: - k8s/** - Tiltfile - branches: [master] + branches: [main] jobs: cdk8s-tests: From be2e7a584c6bf2ee6b7f2315ba60cfd35ee9dc16 Mon Sep 17 00:00:00 2001 From: cdiener Date: Thu, 17 Apr 2025 14:29:47 +0200 Subject: [PATCH 2/2] ci: trigger workflow --- Tiltfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Tiltfile b/Tiltfile index 60233ca..06751bc 100644 --- a/Tiltfile +++ b/Tiltfile @@ -1,14 +1,11 @@ local("make dist", dir="k8s") # Create namespace if it doesn't exist -local( - "kubectl get namespace integration --no-headers || kubectl create namespace integration" -) +local("kubectl get namespace integration --no-headers || kubectl create namespace integration") k8s_yaml(listdir(os.path.join("k8s", "dist"))) k8s_resource( objects=[ - "licensing:namespace", "licensing:serviceaccount:licensing", "licensing:role:licensing", "licensing:rolebinding:licensing",