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: 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