Skip to content

Commit a99d6bb

Browse files
committed
Merge remote-tracking branch 'origin/improve-cache-interface' into improve-cache-interface
# Conflicts: # operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/source/ControllerResourceEventSource.java # sample-operators/tomcat-operator/src/main/java/io/javaoperatorsdk/operator/sample/WebappReconciler.java
2 parents 721fec0 + 084e39a commit a99d6bb

File tree

88 files changed

+1538
-688
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+1538
-688
lines changed

.github/workflows/end-to-end-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
sleep 1
2525
2626
- name: Create Kubernetes KinD Cluster
27-
uses: container-tools/kind-action@v1.5.0
27+
uses: container-tools/kind-action@v1.7.0
2828
with:
2929
cluster_name: e2e-test
3030
registry: false

.github/workflows/master-snapshot-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ concurrency:
88
cancel-in-progress: true
99
on:
1010
push:
11-
branches: [ master ]
11+
branches: [ main ]
1212
workflow_dispatch:
1313
jobs:
1414
test:

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ concurrency:
88
cancel-in-progress: true
99
on:
1010
pull_request:
11-
branches: [ master, v2 ]
11+
branches: [ main, v1 ]
1212
workflow_dispatch:
1313
jobs:
1414
build:

.github/workflows/release.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
12+
if: ${{ startsWith(github.event.release.tag_name, 'v1.' ) }}
13+
with:
14+
ref: "v1"
15+
- uses: actions/checkout@v2
16+
if: ${{ startsWith(github.event.release.tag_name, 'v2.') }}
1217
- name: Set up Java and Maven
1318
uses: actions/setup-java@v2
1419
with:
@@ -34,6 +39,11 @@ jobs:
3439
runs-on: ubuntu-latest
3540
steps:
3641
- uses: actions/checkout@v2
42+
if: ${{ startsWith(github.event.release.tag_name, 'v1.' ) }}
43+
with:
44+
ref: "v1"
45+
- uses: actions/checkout@v2
46+
if: ${{ startsWith(github.event.release.tag_name, 'v2.') }}
3747
- name: Set up Java and Maven
3848
uses: actions/setup-java@v2
3949
with:
@@ -49,7 +59,14 @@ jobs:
4959
git commit -m "Set new SNAPSHOT version into pom files." -a
5060
env:
5161
RELEASE_VERSION: ${{ github.event.release.tag_name }}
52-
- name: Push changes
62+
- name: Push changes v1
63+
uses: ad-m/github-push-action@master
64+
if: ${{ startsWith(github.event.release.tag_name, 'v1.' ) }}
65+
with:
66+
github_token: ${{ secrets.GITHUB_TOKEN }}
67+
branch: "v1"
68+
- name: Push changes v2
5369
uses: ad-m/github-push-action@master
70+
if: ${{ startsWith(github.event.release.tag_name, 'v2.' ) }}
5471
with:
5572
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)