@@ -53,7 +53,7 @@ This action supports three tag levels for flexible versioning:
5353
5454``` yaml
5555 - name : Run the Action
56- uses : devops-infra/action-commit-push@v1.3.4
56+ uses : devops-infra/action-commit-push@v1.4.0
5757 with :
5858 github_token : " ${{ secrets.GITHUB_TOKEN }}"
5959 add_timestamp : true
@@ -121,7 +121,7 @@ jobs:
121121 find . -type f -name "*.md" -print0 | xargs -0 sed -i "s/foo/bar/g"
122122
123123 - name: Commit and push changes
124- uses: devops-infra/action-commit-push@v1.3.4
124+ uses: devops-infra/action-commit-push@v1.4.0
125125 with:
126126 github_token: ${{ secrets.GITHUB_TOKEN }}
127127 commit_message: "Replace foo with bar"
@@ -145,7 +145,7 @@ jobs:
145145 find . -type f -name "*.md" -print0 | xargs -0 sed -i "s/foo/bar/g"
146146
147147 - name: Commit and push changes
148- uses: devops-infra/action-commit-push@v1.3.4
148+ uses: devops-infra/action-commit-push@v1.4.0
149149 with:
150150 github_token: ${{ secrets.GITHUB_TOKEN }}
151151 commit_prefix: "[AUTO-COMMIT] "
@@ -186,7 +186,7 @@ jobs:
186186 echo "Additional content" >> README.md
187187
188188 - name: Amend and force push with lease
189- uses: devops-infra/action-commit-push@v1.3.4
189+ uses: devops-infra/action-commit-push@v1.4.0
190190 with:
191191 github_token: ${{ secrets.GITHUB_TOKEN }}
192192 commit_message: ${{ github.event.inputs.new_commit_message }}
@@ -215,7 +215,7 @@ jobs:
215215 echo "Updated" >> work/repo/README.md
216216
217217 - name: Commit and push changes
218- uses: devops-infra/action-commit-push@v1.3.4
218+ uses: devops-infra/action-commit-push@v1.4.0
219219 with:
220220 github_token: ${{ secrets.GITHUB_TOKEN }}
221221 repository_path: work/repo
@@ -236,7 +236,7 @@ This action can sign generated commits by configuring repository-local git signi
236236
237237` ` ` yaml
238238- name: Commit and push signed changes
239- uses: devops-infra/action-commit-push@v1.3.4
239+ uses: devops-infra/action-commit-push@v1.4.0
240240 with:
241241 github_token: ${{ secrets.GITHUB_TOKEN }}
242242 commit_message: "test(commit-push): signed with gpg"
@@ -249,7 +249,7 @@ This action can sign generated commits by configuring repository-local git signi
249249
250250` ` ` yaml
251251- name: Commit and push SSH-signed changes
252- uses: devops-infra/action-commit-push@v1.3.4
252+ uses: devops-infra/action-commit-push@v1.4.0
253253 with:
254254 github_token: ${{ secrets.GITHUB_TOKEN }}
255255 commit_message: "test(commit-push): signed with ssh"
@@ -269,7 +269,7 @@ When using `amend: true`, you have several options for handling the commit messa
269269
2702701. **Change the commit message** : Set `commit_message` to provide a new message
271271 ` ` ` yaml
272- - uses: devops-infra/action-commit-push@v1.3.4
272+ - uses: devops-infra/action-commit-push@v1.4.0
273273 with:
274274 github_token: ${{ secrets.GITHUB_TOKEN }}
275275 commit_message: "Fixed typo in documentation"
@@ -279,7 +279,7 @@ When using `amend: true`, you have several options for handling the commit messa
279279
2802802. **Keep existing message** : Set `no_edit: true` to keep the original commit message
281281 ` ` ` yaml
282- - uses: devops-infra/action-commit-push@v1.3.4
282+ - uses: devops-infra/action-commit-push@v1.4.0
283283 with:
284284 github_token: ${{ secrets.GITHUB_TOKEN }}
285285 amend: true
@@ -328,10 +328,10 @@ jobs:
328328 steps:
329329 - uses: actions/checkout@v6
330330
331- - uses: devops-infra/action-commit-push@v1.3.4
331+ - uses: devops-infra/action-commit-push@v1.4.0
332332 id: Pin patch version
333333
334- - uses: devops-infra/action-commit-push@v1.3
334+ - uses: devops-infra/action-commit-push@v1.4
335335 id: Pin minor version
336336
337337 - uses: devops-infra/action-commit-push@v1
0 commit comments