Skip to content

Commit 0b42c7c

Browse files
chore(release): prepare v1.3.3 (#213)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 9dbeef2 commit 0b42c7c

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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.2
55+
uses: devops-infra/action-commit-push@v1.3.3
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.2
117+
uses: devops-infra/action-commit-push@v1.3.3
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.2
141+
uses: devops-infra/action-commit-push@v1.3.3
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.2
182+
uses: devops-infra/action-commit-push@v1.3.3
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.2
211+
uses: devops-infra/action-commit-push@v1.3.3
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

221221
1. **Change the commit message**: Set `commit_message` to provide a new message
222222
```yaml
223-
- uses: devops-infra/action-commit-push@v1.3.2
223+
- uses: devops-infra/action-commit-push@v1.3.3
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

231231
2. **Keep existing message**: Set `no_edit: true` to keep the original commit message
232232
```yaml
233-
- uses: devops-infra/action-commit-push@v1.3.2
233+
- uses: devops-infra/action-commit-push@v1.3.3
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.2
282+
- uses: devops-infra/action-commit-push@v1.3.3
283283
id: Pin patch version
284284
285285
- uses: devops-infra/action-commit-push@v1.3

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ outputs:
6969
description: Name of the branch code was pushed into
7070
runs:
7171
using: docker
72-
image: docker://devopsinfra/action-commit-push:v1.3.2
72+
image: docker://devopsinfra/action-commit-push:v1.3.3
7373
env:
7474
GITHUB_TOKEN: ${{ inputs.github_token }}
7575
branding:

0 commit comments

Comments
 (0)