From cb2a23b55332fef4b9b073955048dbd2102a933d Mon Sep 17 00:00:00 2001 From: David Collom Date: Thu, 1 May 2025 10:00:16 +0100 Subject: [PATCH 1/4] Trigger Release v0.9.2 From 8e0fe5411c88e15625cf870b2314a894a1e47952 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 1 May 2025 09:01:22 +0000 Subject: [PATCH 2/4] Bump versions to v0.9.2 --- Makefile | 2 +- deploy/charts/version-checker/Chart.yaml | 4 ++-- deploy/charts/version-checker/README.md | 2 +- deploy/yaml/deploy.yaml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 004f859..c5f0831 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ verify: test build ## tests and builds version-checker image: ## build docker image GOARCH=$(ARCH) GOOS=linux CGO_ENABLED=0 go build -o ./bin/version-checker-linux ./cmd/. - docker build -t quay.io/jetstack/version-checker:v0.9.1 . + docker build -t quay.io/jetstack/version-checker:v0.9.2 . clean: ## clean up created files rm -rf \ diff --git a/deploy/charts/version-checker/Chart.yaml b/deploy/charts/version-checker/Chart.yaml index 165a0cc..02ce454 100644 --- a/deploy/charts/version-checker/Chart.yaml +++ b/deploy/charts/version-checker/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 -appVersion: "v0.9.1" -version: "v0.9.1" +appVersion: "v0.9.2" +version: "v0.9.2" description: A Helm chart for version-checker home: https://github.com/jetstack/version-checker name: version-checker diff --git a/deploy/charts/version-checker/README.md b/deploy/charts/version-checker/README.md index 07f0304..8f1dae8 100644 --- a/deploy/charts/version-checker/README.md +++ b/deploy/charts/version-checker/README.md @@ -1,6 +1,6 @@ # version-checker -![Version: v0.9.1](https://img.shields.io/badge/Version-v0.9.1-informational?style=flat-square) ![AppVersion: v0.9.1](https://img.shields.io/badge/AppVersion-v0.9.1-informational?style=flat-square) +![Version: v0.9.2](https://img.shields.io/badge/Version-v0.9.2-informational?style=flat-square) ![AppVersion: v0.9.2](https://img.shields.io/badge/AppVersion-v0.9.2-informational?style=flat-square) A Helm chart for version-checker diff --git a/deploy/yaml/deploy.yaml b/deploy/yaml/deploy.yaml index 750ba4d..a34bcc8 100644 --- a/deploy/yaml/deploy.yaml +++ b/deploy/yaml/deploy.yaml @@ -50,7 +50,7 @@ spec: spec: serviceAccountName: version-checker containers: - - image: quay.io/jetstack/version-checker:v0.9.1 + - image: quay.io/jetstack/version-checker:v0.9.2 imagePullPolicy: Always ports: - containerPort: 8080 From 6157695484ff5234c44e23f091129be44cf1d539 Mon Sep 17 00:00:00 2001 From: David Collom Date: Thu, 1 May 2025 10:51:12 +0100 Subject: [PATCH 3/4] Ensure that Release commit workflows show the commands executed --- .github/workflows/release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2717c2c..fa80338 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -95,6 +95,7 @@ jobs: - name: Commit files if: steps.filter.outputs.versions == 'true' run: | + set -x git config --local user.email "github-actions[bot]@users.noreply.github.com" git config --local user.name "github-actions[bot]" git status From 1f41f7eff64a2264a3abaada07a525cd7ad8073c Mon Sep 17 00:00:00 2001 From: David Collom Date: Thu, 1 May 2025 10:55:37 +0100 Subject: [PATCH 4/4] Ignore pre-release's when generating changelogs --- .github/workflows/release.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index fa80338..ee0fc27 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -111,6 +111,8 @@ jobs: - name: Build Changelog id: github_release uses: mikepenz/release-changelog-builder-action@v5 + with: + ignorePreReleases: true - name: Create Release PR uses: devops-infra/action-pull-request@v0.6.0