File tree Expand file tree Collapse file tree 7 files changed +10
-10
lines changed
Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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.
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
Original file line number Diff line number Diff line change 55 workflow_dispatch:
66 push:
77 branches:
8- - devel
8+ - release-0.22
99 - release-*
1010
1111permissions: {}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name: Reporting
44on:
55 push:
66 branches:
7- - devel
7+ - release-0.22
88 - release-*
99
1010permissions: {}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Upgrade
33
44on:
55 pull_request:
6- branches: [devel ]
6+ branches: [release-0.22 ]
77
88permissions: {}
99
Original file line number Diff line number Diff line change 1- BASE_BRANCH ?= devel
1+ BASE_BRANCH ?= release-0.22
22OCM_BASE_BRANCH ?= main
33IMAGES ?= shipyard-dapper-base shipyard-linting nettest
44LOCAL_COMPONENTS := submariner-metrics-proxy
Original file line number Diff line number Diff line change 11# Calculate versions; these can be overridden
2- CUTTING_EDGE := devel
2+ CUTTING_EDGE := release-0.22
33DEV_VERSION := dev
44override CALCULATED_VERSION := $(BASE_BRANCH)-$(shell git rev-parse --short=12 HEAD)
55VERSION ?= $(CALCULATED_VERSION)
You can’t perform that action at this time.
0 commit comments