@@ -47,7 +47,7 @@ This action supports three tag levels for flexible versioning:
4747
4848``` yaml
4949 - name : Run the Action
50- uses : devops-infra/action-commit-push@v1.0.2
50+ uses : devops-infra/action-commit-push@v1.0.3
5151 with :
5252 github_token : " ${{ secrets.GITHUB_TOKEN }}"
5353 add_timestamp : true
@@ -104,7 +104,7 @@ jobs:
104104 find . -type f -name "*.md" -print0 | xargs -0 sed -i "s/foo/bar/g"
105105
106106 - name: Commit and push changes
107- uses: devops-infra/action-commit-push@v1.0.2
107+ uses: devops-infra/action-commit-push@v1.0.3
108108 with:
109109 github_token: ${{ secrets.GITHUB_TOKEN }}
110110 commit_message: "Replace foo with bar"
@@ -169,7 +169,7 @@ jobs:
169169 echo "Additional content" >> README.md
170170
171171 - name: Amend and force push with lease
172- uses: devops-infra/action-commit-push@v1.0.2
172+ uses: devops-infra/action-commit-push@v1.0.3
173173 with:
174174 github_token: ${{ secrets.GITHUB_TOKEN }}
175175 commit_message: ${{ github.event.inputs.new_commit_message }}
@@ -182,7 +182,7 @@ When using `amend: true`, you have several options for handling the commit messa
182182
1831831. **Change the commit message** : Set `commit_message` to provide a new message
184184 ` ` ` yaml
185- - uses: devops-infra/action-commit-push@v1.0.2
185+ - uses: devops-infra/action-commit-push@v1.0.3
186186 with:
187187 github_token: ${{ secrets.GITHUB_TOKEN }}
188188 commit_message: "Fixed typo in documentation"
@@ -192,7 +192,7 @@ When using `amend: true`, you have several options for handling the commit messa
192192
1931932. **Keep existing message** : Set `no_edit: true` to keep the original commit message
194194 ` ` ` yaml
195- - uses: devops-infra/action-commit-push@v1.0.2
195+ - uses: devops-infra/action-commit-push@v1.0.3
196196 with:
197197 github_token: ${{ secrets.GITHUB_TOKEN }}
198198 amend: true
@@ -238,7 +238,7 @@ jobs:
238238 steps:
239239 - uses: actions/checkout@v5
240240
241- - uses: devops-infra/action-commit-push@v1.0.2
241+ - uses: devops-infra/action-commit-push@v1.0.3
242242 id: Pin patch version
243243
244244 - uses: devops-infra/action-commit-push@v1.0
0 commit comments