Skip to content

Commit bf960d1

Browse files
authored
Merge pull request #570 from fluxcd/ci-release-workflows
ci: various workflow changes
2 parents 4dd7049 + 8f11af7 commit bf960d1

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/cifuzz.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: fuzz
22
on:
33
pull_request:
4-
branches:
5-
- main
4+
branches: [ 'main', 'release/**' ]
65

76
permissions:
87
contents: read # for actions/checkout to fetch code

.github/workflows/e2e.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ name: e2e
22
on:
33
pull_request:
44
push:
5-
branches:
6-
- main
5+
branches: [ 'main', 'release/**' ]
76

87
permissions:
98
contents: read # for actions/checkout to fetch code
@@ -37,7 +36,9 @@ jobs:
3736
- name: Setup Kubernetes
3837
uses: helm/kind-action@fa81e57adff234b2908110485695db0f181f3c67 # v1.7.0
3938
with:
39+
version: v0.20.0
4040
cluster_name: kind
41+
node_image: kindest/node:v1.27.3@sha256:3966ac761ae0136263ffdb6cfd4db23ef8a83cba8a463690e98317add2c9ba72
4142
- name: Setup Kustomize
4243
uses: fluxcd/pkg/actions/kustomize@main
4344
- name: Run tests

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
inputs:
88
tag:
99
description: 'image tag prefix'
10-
default: 'rc'
10+
default: 'preview'
1111
required: true
1212

1313
permissions:

.github/workflows/scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: scan
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ 'main', 'release/**' ]
66
pull_request:
7-
branches: [ main ]
7+
branches: [ 'main', 'release/**' ]
88
schedule:
99
- cron: '18 10 * * 3'
1010

0 commit comments

Comments
 (0)