Skip to content

Commit bb16651

Browse files
author
Automated Release
committed
Update Shipyard to use stable branch 'release-0.22'
Signed-off-by: Automated Release <release@submariner.io>
1 parent e1ca79d commit bb16651

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
name: PR targets branch
1212
runs-on: ubuntu-latest
1313
steps:
14-
- name: Check that the PR targets devel
15-
if: ${{ github.base_ref != 'devel' }}
14+
- name: Check that the PR targets release-0.22
15+
if: ${{ github.base_ref != 'release-0.22' }}
1616
run: exit 1

.github/workflows/consuming.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
3636
with:
3737
# This is replaced to stable branch by auto release process
38-
ref: devel
38+
ref: release-0.22
3939
repository: submariner-io/${{ matrix.project }}
4040

4141
# Check out Shipyard as a sub directory of the project, so that `go replace` can work.
@@ -92,7 +92,7 @@ jobs:
9292
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
9393
with:
9494
# This is replaced to stable branch by auto release process
95-
ref: devel
95+
ref: release-0.22
9696
repository: submariner-io/${{ matrix.project }}
9797
path: ${{ matrix.project }}
9898

@@ -147,7 +147,7 @@ jobs:
147147
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
148148
with:
149149
# This is replaced to stable branch by auto release process
150-
ref: devel
150+
ref: release-0.22
151151
repository: submariner-io/${{ matrix.project }}
152152
path: ${{ matrix.project }}
153153

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
workflow_dispatch:
66
push:
77
branches:
8-
- devel
8+
- release-0.22
99
- release-*
1010

1111
permissions: {}

.github/workflows/report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Reporting
44
on:
55
push:
66
branches:
7-
- devel
7+
- release-0.22
88
- release-*
99

1010
permissions: {}

.github/workflows/upgrade-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Upgrade
33

44
on:
55
pull_request:
6-
branches: [devel]
6+
branches: [release-0.22]
77

88
permissions: {}
99

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
BASE_BRANCH ?= devel
1+
BASE_BRANCH ?= release-0.22
22
OCM_BASE_BRANCH ?= main
33
IMAGES ?= shipyard-dapper-base shipyard-linting nettest
44
LOCAL_COMPONENTS := submariner-metrics-proxy

Makefile.versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Calculate versions; these can be overridden
2-
CUTTING_EDGE := devel
2+
CUTTING_EDGE := release-0.22
33
DEV_VERSION := dev
44
override CALCULATED_VERSION := $(BASE_BRANCH)-$(shell git rev-parse --short=12 HEAD)
55
VERSION ?= $(CALCULATED_VERSION)

0 commit comments

Comments
 (0)