@@ -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.2.1
55+ uses : devops-infra/action-commit-push@v1.2.2
5656 with :
5757 github_token : " ${{ secrets.GITHUB_TOKEN }}"
5858 add_timestamp : true
@@ -113,7 +113,7 @@ jobs:
113113 find . -type f -name "*.md" -print0 | xargs -0 sed -i "s/foo/bar/g"
114114
115115 - name: Commit and push changes
116- uses: devops-infra/action-commit-push@v1.2.1
116+ uses: devops-infra/action-commit-push@v1.2.2
117117 with:
118118 github_token: ${{ secrets.GITHUB_TOKEN }}
119119 commit_message: "Replace foo with bar"
@@ -137,7 +137,7 @@ jobs:
137137 find . -type f -name "*.md" -print0 | xargs -0 sed -i "s/foo/bar/g"
138138
139139 - name: Commit and push changes
140- uses: devops-infra/action-commit-push@v1.2.1
140+ uses: devops-infra/action-commit-push@v1.2.2
141141 with:
142142 github_token: ${{ secrets.GITHUB_TOKEN }}
143143 commit_prefix: "[AUTO-COMMIT] "
@@ -178,7 +178,7 @@ jobs:
178178 echo "Additional content" >> README.md
179179
180180 - name: Amend and force push with lease
181- uses: devops-infra/action-commit-push@v1.2.1
181+ uses: devops-infra/action-commit-push@v1.2.2
182182 with:
183183 github_token: ${{ secrets.GITHUB_TOKEN }}
184184 commit_message: ${{ github.event.inputs.new_commit_message }}
@@ -191,7 +191,7 @@ When using `amend: true`, you have several options for handling the commit messa
191191
1921921. **Change the commit message** : Set `commit_message` to provide a new message
193193 ` ` ` yaml
194- - uses: devops-infra/action-commit-push@v1.2.1
194+ - uses: devops-infra/action-commit-push@v1.2.2
195195 with:
196196 github_token: ${{ secrets.GITHUB_TOKEN }}
197197 commit_message: "Fixed typo in documentation"
@@ -201,7 +201,7 @@ When using `amend: true`, you have several options for handling the commit messa
201201
2022022. **Keep existing message** : Set `no_edit: true` to keep the original commit message
203203 ` ` ` yaml
204- - uses: devops-infra/action-commit-push@v1.2.1
204+ - uses: devops-infra/action-commit-push@v1.2.2
205205 with:
206206 github_token: ${{ secrets.GITHUB_TOKEN }}
207207 amend: true
@@ -250,7 +250,7 @@ jobs:
250250 steps:
251251 - uses: actions/checkout@v5
252252
253- - uses: devops-infra/action-commit-push@v1.2.1
253+ - uses: devops-infra/action-commit-push@v1.2.2
254254 id: Pin patch version
255255
256256 - uses: devops-infra/action-commit-push@v1.1
0 commit comments