diff --git a/README.md b/README.md index 1d0e184..02c8f73 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ This action supports three tag levels for flexible versioning: ```yaml - name: Run the Action - uses: devops-infra/action-commit-push@v1.3.1 + uses: devops-infra/action-commit-push@v1.3.2 with: github_token: "${{ secrets.GITHUB_TOKEN }}" add_timestamp: true @@ -114,7 +114,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@v1.3.1 + uses: devops-infra/action-commit-push@v1.3.2 with: github_token: ${{ secrets.GITHUB_TOKEN }} commit_message: "Replace foo with bar" @@ -138,7 +138,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@v1.3.1 + uses: devops-infra/action-commit-push@v1.3.2 with: github_token: ${{ secrets.GITHUB_TOKEN }} commit_prefix: "[AUTO-COMMIT] " @@ -179,7 +179,7 @@ jobs: echo "Additional content" >> README.md - name: Amend and force push with lease - uses: devops-infra/action-commit-push@v1.3.1 + uses: devops-infra/action-commit-push@v1.3.2 with: github_token: ${{ secrets.GITHUB_TOKEN }} commit_message: ${{ github.event.inputs.new_commit_message }} @@ -208,7 +208,7 @@ jobs: echo "Updated" >> work/repo/README.md - name: Commit and push changes - uses: devops-infra/action-commit-push@v1.3.1 + uses: devops-infra/action-commit-push@v1.3.2 with: github_token: ${{ secrets.GITHUB_TOKEN }} repository_path: work/repo @@ -220,7 +220,7 @@ When using `amend: true`, you have several options for handling the commit messa 1. **Change the commit message**: Set `commit_message` to provide a new message ```yaml - - uses: devops-infra/action-commit-push@v1.3.1 + - uses: devops-infra/action-commit-push@v1.3.2 with: github_token: ${{ secrets.GITHUB_TOKEN }} commit_message: "Fixed typo in documentation" @@ -230,7 +230,7 @@ When using `amend: true`, you have several options for handling the commit messa 2. **Keep existing message**: Set `no_edit: true` to keep the original commit message ```yaml - - uses: devops-infra/action-commit-push@v1.3.1 + - uses: devops-infra/action-commit-push@v1.3.2 with: github_token: ${{ secrets.GITHUB_TOKEN }} amend: true @@ -279,7 +279,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: devops-infra/action-commit-push@v1.3.1 + - uses: devops-infra/action-commit-push@v1.3.2 id: Pin patch version - uses: devops-infra/action-commit-push@v1.3 diff --git a/action.yml b/action.yml index e57337c..edf2bdb 100644 --- a/action.yml +++ b/action.yml @@ -69,7 +69,7 @@ outputs: description: Name of the branch code was pushed into runs: using: docker - image: docker://devopsinfra/action-commit-push:v1.3.1 + image: docker://devopsinfra/action-commit-push:v1.3.2 env: GITHUB_TOKEN: ${{ inputs.github_token }} branding: