From 9e634a783fe767bf4e55a3d48b72822bbb2e5c30 Mon Sep 17 00:00:00 2001 From: Automated Release Date: Mon, 11 Sep 2023 09:36:37 +0000 Subject: [PATCH] Update Shipyard to use stable branch 'release-0.16' Signed-off-by: Automated Release --- .github/workflows/branch.yml | 4 ++-- .github/workflows/consuming.yml | 6 +++--- .github/workflows/release.yml | 2 +- .github/workflows/report.yml | 2 +- .github/workflows/upgrade-e2e.yml | 2 +- Makefile | 2 +- Makefile.versions | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/branch.yml b/.github/workflows/branch.yml index 1a9dc9b01..f2d1c6c42 100644 --- a/.github/workflows/branch.yml +++ b/.github/workflows/branch.yml @@ -11,6 +11,6 @@ jobs: name: PR targets branch runs-on: ubuntu-latest steps: - - name: Check that the PR targets devel - if: ${{ github.base_ref != 'devel' }} + - name: Check that the PR targets release-0.16 + if: ${{ github.base_ref != 'release-0.16' }} run: exit 1 diff --git a/.github/workflows/consuming.yml b/.github/workflows/consuming.yml index e4e381e01..eec9f7d2f 100644 --- a/.github/workflows/consuming.yml +++ b/.github/workflows/consuming.yml @@ -51,7 +51,7 @@ jobs: uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac with: # This is replaced to stable branch by auto release process - ref: devel + ref: release-0.16 repository: submariner-io/${{ matrix.project }} path: ${{ matrix.project }} @@ -97,7 +97,7 @@ jobs: uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac with: # This is replaced to stable branch by auto release process - ref: devel + ref: release-0.16 repository: submariner-io/${{ matrix.project }} path: ${{ matrix.project }} @@ -152,7 +152,7 @@ jobs: uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac with: # This is replaced to stable branch by auto release process - ref: devel + ref: release-0.16 repository: submariner-io/${{ matrix.project }} path: ${{ matrix.project }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 694b988bf..7b326a53f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,7 @@ on: workflow_dispatch: push: branches: - - devel + - release-0.16 - release-* permissions: {} diff --git a/.github/workflows/report.yml b/.github/workflows/report.yml index 54e405240..5b7870b48 100644 --- a/.github/workflows/report.yml +++ b/.github/workflows/report.yml @@ -4,7 +4,7 @@ name: Reporting on: push: branches: - - devel + - release-0.16 - release-* permissions: {} diff --git a/.github/workflows/upgrade-e2e.yml b/.github/workflows/upgrade-e2e.yml index 2851665c6..e33d9cc01 100644 --- a/.github/workflows/upgrade-e2e.yml +++ b/.github/workflows/upgrade-e2e.yml @@ -3,7 +3,7 @@ name: Upgrade on: pull_request: - branches: [devel] + branches: [release-0.16] permissions: {} diff --git a/Makefile b/Makefile index 2aeeebfbb..fc2523f02 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -BASE_BRANCH ?= devel +BASE_BRANCH ?= release-0.16 OCM_BASE_BRANCH ?= main IMAGES ?= shipyard-dapper-base shipyard-linting nettest MULTIARCH_IMAGES ?= nettest diff --git a/Makefile.versions b/Makefile.versions index aca450ff5..2bf4c349e 100644 --- a/Makefile.versions +++ b/Makefile.versions @@ -1,5 +1,5 @@ # Calculate versions; these can be overridden -CUTTING_EDGE := devel +CUTTING_EDGE := release-0.16 DEV_VERSION := dev override CALCULATED_VERSION := $(BASE_BRANCH)-$(shell git rev-parse --short=12 HEAD) VERSION ?= $(CALCULATED_VERSION)