From d07ba4ccb630ddc3e3acc1791cd5297c6a38f68e Mon Sep 17 00:00:00 2001 From: Casper Welzel Andersen Date: Tue, 21 Apr 2026 10:31:32 +0200 Subject: [PATCH 1/3] Update push-protected action --- .github/workflows/cd_release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd_release.yml b/.github/workflows/cd_release.yml index 226a8940..f4b22ee2 100644 --- a/.github/workflows/cd_release.yml +++ b/.github/workflows/cd_release.yml @@ -78,9 +78,9 @@ jobs: with: token: ${{ secrets.RELEASE_PAT }} branch: ${{ env.DEFAULT_REPO_BRANCH }} - sleep: 15 + pre_sleep: 15 force: true - unprotect_reviews: false + unprotect_reviews: true publish_container_image: name: Publish Container image on GH Packages From cfc7bdcdedfa8d32ffa4d6cc1b7de83b5bf3b892 Mon Sep 17 00:00:00 2001 From: Casper Welzel Andersen Date: Tue, 21 Apr 2026 12:02:38 +0200 Subject: [PATCH 2/3] Try to fix the release workflow with an extra commit --- .github/workflows/cd_release.yml | 4 ++-- .gitignore | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd_release.yml b/.github/workflows/cd_release.yml index f4b22ee2..cdc023c5 100644 --- a/.github/workflows/cd_release.yml +++ b/.github/workflows/cd_release.yml @@ -70,7 +70,7 @@ jobs: if: steps.update_version_step.outputs.continue_workflow == 'true' run: | git add app/__init__.py CHANGELOG.md - git commit --amend -C HEAD + git commit -m "[bot] Update version and CHANGELOG" - name: Update '${{ env.DEFAULT_REPO_BRANCH }}' if: steps.update_version_step.outputs.continue_workflow == 'true' @@ -79,7 +79,7 @@ jobs: token: ${{ secrets.RELEASE_PAT }} branch: ${{ env.DEFAULT_REPO_BRANCH }} pre_sleep: 15 - force: true + force: false unprotect_reviews: true publish_container_image: diff --git a/.gitignore b/.gitignore index cece21ad..5ec81f17 100644 --- a/.gitignore +++ b/.gitignore @@ -570,3 +570,5 @@ MigrationBackup/ constraints.txt .*_cache/ + +.claude/ From f27f18e6602d4c1e00d83aded061af2bab00c6d0 Mon Sep 17 00:00:00 2001 From: Casper Welzel Andersen Date: Tue, 21 Apr 2026 13:01:59 +0200 Subject: [PATCH 3/3] Add note to skip running ci to version bump commit message --- .github/workflows/cd_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd_release.yml b/.github/workflows/cd_release.yml index cdc023c5..8c760238 100644 --- a/.github/workflows/cd_release.yml +++ b/.github/workflows/cd_release.yml @@ -70,7 +70,7 @@ jobs: if: steps.update_version_step.outputs.continue_workflow == 'true' run: | git add app/__init__.py CHANGELOG.md - git commit -m "[bot] Update version and CHANGELOG" + git commit -m "[bot] Update version and CHANGELOG [skip ci]" - name: Update '${{ env.DEFAULT_REPO_BRANCH }}' if: steps.update_version_step.outputs.continue_workflow == 'true'