@@ -52,7 +52,7 @@ This action supports three tag levels for flexible versioning:
5252
5353``` yaml
5454 - name : Run the Action
55- uses : devops-infra/action-commit-push@v1.3.1
55+ uses : devops-infra/action-commit-push@v1.3.2
5656 with :
5757 github_token : " ${{ secrets.GITHUB_TOKEN }}"
5858 add_timestamp : true
@@ -114,7 +114,7 @@ jobs:
114114 find . -type f -name "*.md" -print0 | xargs -0 sed -i "s/foo/bar/g"
115115
116116 - name: Commit and push changes
117- uses: devops-infra/action-commit-push@v1.3.1
117+ uses: devops-infra/action-commit-push@v1.3.2
118118 with:
119119 github_token: ${{ secrets.GITHUB_TOKEN }}
120120 commit_message: "Replace foo with bar"
@@ -138,7 +138,7 @@ jobs:
138138 find . -type f -name "*.md" -print0 | xargs -0 sed -i "s/foo/bar/g"
139139
140140 - name: Commit and push changes
141- uses: devops-infra/action-commit-push@v1.3.1
141+ uses: devops-infra/action-commit-push@v1.3.2
142142 with:
143143 github_token: ${{ secrets.GITHUB_TOKEN }}
144144 commit_prefix: "[AUTO-COMMIT] "
@@ -179,7 +179,7 @@ jobs:
179179 echo "Additional content" >> README.md
180180
181181 - name: Amend and force push with lease
182- uses: devops-infra/action-commit-push@v1.3.1
182+ uses: devops-infra/action-commit-push@v1.3.2
183183 with:
184184 github_token: ${{ secrets.GITHUB_TOKEN }}
185185 commit_message: ${{ github.event.inputs.new_commit_message }}
@@ -208,7 +208,7 @@ jobs:
208208 echo "Updated" >> work/repo/README.md
209209
210210 - name: Commit and push changes
211- uses: devops-infra/action-commit-push@v1.3.1
211+ uses: devops-infra/action-commit-push@v1.3.2
212212 with:
213213 github_token: ${{ secrets.GITHUB_TOKEN }}
214214 repository_path: work/repo
@@ -220,7 +220,7 @@ When using `amend: true`, you have several options for handling the commit messa
220220
2212211. **Change the commit message** : Set `commit_message` to provide a new message
222222 ` ` ` yaml
223- - uses: devops-infra/action-commit-push@v1.3.1
223+ - uses: devops-infra/action-commit-push@v1.3.2
224224 with:
225225 github_token: ${{ secrets.GITHUB_TOKEN }}
226226 commit_message: "Fixed typo in documentation"
@@ -230,7 +230,7 @@ When using `amend: true`, you have several options for handling the commit messa
230230
2312312. **Keep existing message** : Set `no_edit: true` to keep the original commit message
232232 ` ` ` yaml
233- - uses: devops-infra/action-commit-push@v1.3.1
233+ - uses: devops-infra/action-commit-push@v1.3.2
234234 with:
235235 github_token: ${{ secrets.GITHUB_TOKEN }}
236236 amend: true
@@ -279,7 +279,7 @@ jobs:
279279 steps:
280280 - uses: actions/checkout@v6
281281
282- - uses: devops-infra/action-commit-push@v1.3.1
282+ - uses: devops-infra/action-commit-push@v1.3.2
283283 id: Pin patch version
284284
285285 - uses: devops-infra/action-commit-push@v1.3
0 commit comments