Skip to content

Commit 167369d

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

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
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.23
15+
if: ${{ github.base_ref != 'release-0.23' }}
1616
run: exit 1

.github/workflows/coderabbit-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010

1111
jobs:
1212
trigger-review:
13-
uses: submariner-io/submariner-bot/.github/workflows/coderabbit-trigger.yml@devel
13+
uses: submariner-io/submariner-bot/.github/workflows/coderabbit-trigger.yml@release-0.23
1414
with:
1515
pr_number: ${{ github.event.pull_request.number }}
1616
secrets: inherit

.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@de0fac2e4500dabe0009e67214ff5f5447ce83dd
3636
with:
3737
# This is replaced to stable branch by auto release process
38-
ref: devel
38+
ref: release-0.23
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@de0fac2e4500dabe0009e67214ff5f5447ce83dd
9393
with:
9494
# This is replaced to stable branch by auto release process
95-
ref: devel
95+
ref: release-0.23
9696
repository: submariner-io/${{ matrix.project }}
9797
path: ${{ matrix.project }}
9898

@@ -147,7 +147,7 @@ jobs:
147147
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
148148
with:
149149
# This is replaced to stable branch by auto release process
150-
ref: devel
150+
ref: release-0.23
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.23
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.23
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.23]
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.23
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.23
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)