Skip to content

Commit 5735f66

Browse files
Lillecarlclaude
andcommitted
Enable CI on all branches
Remove branch filter from push trigger to allow CI to run on all branches, not just main and develop. Tag-based releases and manual dispatch remain enabled. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com> Enable CI on all branches Use branches: ['*'] to explicitly allow CI to run on all branches, not just main and develop. Tag-based releases and manual dispatch remain enabled. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
1 parent bcf80fd commit 5735f66

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ on:
44
pull_request:
55
push:
66
branches:
7-
- main
8-
- develop
7+
- '*'
98
tags:
109
- 'v*'
1110
workflow_dispatch:

tmp/testpod.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ let
2929
kubernetes.resources.nix-csi.Pod.nritest = {
3030
metadata.annotations = {
3131
"nix-nri/test" = "true";
32-
"nix-nri/pod" = "/etc/ssl=${pkgs.cacert}/etc/ssl";
32+
"nix-nri/pod" = "/etc/ssl/certs=${pkgs.cacert}/etc/ssl/certs";
3333
};
3434
spec = {
3535
containers = lib.mkNamedList {

0 commit comments

Comments
 (0)