Skip to content

Commit be7dcc8

Browse files
authored
Run CI workflows on all pull requests (#1217)
Problem: Pull requests into feature branches were not running all workflows. Solution: Update workflow to run pipelines on all pull requests.
1 parent f547884 commit be7dcc8

File tree

4 files changed

+1
-12
lines changed

4 files changed

+1
-12
lines changed

.github/workflows/ci.yml

-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ on:
88
tags:
99
- "v[0-9]+.[0-9]+.[0-9]+*"
1010
pull_request:
11-
branches:
12-
- main
13-
- release-*
1411

1512
defaults:
1613
run:

.github/workflows/conformance.yml

-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ on:
88
tags:
99
- "v[0-9]+.[0-9]+.[0-9]+*"
1010
pull_request:
11-
branches:
12-
- main
13-
- release-*
1411
schedule:
1512
- cron: "0 4 * * *" # run every day at 4am UTC
1613

.github/workflows/lint.yml

-6
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,6 @@ on:
55
branches:
66
- main
77
pull_request:
8-
branches:
9-
- main
10-
types:
11-
- opened
12-
- reopened
13-
- synchronize
148

159
concurrency:
1610
group: ${{ github.ref_name }}-lint

.yamllint.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ yaml-files:
77
ignore:
88
- deploy/helm-chart/templates/
99
- deploy/helm-chart/crds/
10+
- .github/workflows/
1011

1112
rules:
1213
braces: enable

0 commit comments

Comments
 (0)