From 9069b2fd56203f81a3eb4a6f1a9e6f650717eb18 Mon Sep 17 00:00:00 2001 From: ChristophShyper <45788587+ChristophShyper@users.noreply.github.com> Date: Fri, 22 May 2026 20:56:40 +0200 Subject: [PATCH 1/2] fix: update README for clarity and versioning guidance --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0bad369..289a2f1 100644 --- a/README.md +++ b/README.md @@ -137,7 +137,7 @@ jobs: find . -type f -name "*.md" -print0 | xargs -0 sed -i "s/foo/bar/g" - name: Commit and push changes - uses: devops-infra/action-commit-push@v.11.4 + uses: devops-infra/action-commit-push@v1.2.1 with: github_token: ${{ secrets.GITHUB_TOKEN }} commit_prefix: "[AUTO-COMMIT] " @@ -234,7 +234,10 @@ This action provides two force push options for different scenarios: ### 🎯 Use specific version -Run the Action with a specific version tag. +Pick the tag level based on your stability needs: +- `vX.Y.Z`: exact immutable release (most predictable) +- `vX.Y`: latest patch within one minor line +- `vX`: latest patch within one major line ```yaml name: Run the Action From 1ed7b2d0b17b794ef37c8741a5f755da0d711a0d Mon Sep 17 00:00:00 2001 From: ChristophShyper <45788587+ChristophShyper@users.noreply.github.com> Date: Fri, 22 May 2026 22:34:22 +0200 Subject: [PATCH 2/2] fix: add package write permission to auto-release workflow --- .github/workflows/auto-release-create.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/auto-release-create.yml b/.github/workflows/auto-release-create.yml index 9165169..a032b2e 100644 --- a/.github/workflows/auto-release-create.yml +++ b/.github/workflows/auto-release-create.yml @@ -20,6 +20,7 @@ on: permissions: contents: write + packages: write pull-requests: read jobs: