Skip to content

Commit f066ea8

Browse files
chore(release): prepare v1.5.0 (#222)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 8068390 commit f066ea8

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -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.4.0
56+
uses: devops-infra/action-commit-push@v1.5.0
5757
with:
5858
github_token: "${{ secrets.GITHUB_TOKEN }}"
5959
add_timestamp: true
@@ -125,7 +125,7 @@ jobs:
125125
find . -type f -name "*.md" -print0 | xargs -0 sed -i "s/foo/bar/g"
126126
127127
- name: Commit and push changes
128-
uses: devops-infra/action-commit-push@v1.4.0
128+
uses: devops-infra/action-commit-push@v1.5.0
129129
with:
130130
github_token: ${{ secrets.GITHUB_TOKEN }}
131131
commit_message: "Replace foo with bar"
@@ -149,7 +149,7 @@ jobs:
149149
find . -type f -name "*.md" -print0 | xargs -0 sed -i "s/foo/bar/g"
150150
151151
- name: Commit and push changes
152-
uses: devops-infra/action-commit-push@v1.4.0
152+
uses: devops-infra/action-commit-push@v1.5.0
153153
with:
154154
github_token: ${{ secrets.GITHUB_TOKEN }}
155155
commit_prefix: "[AUTO-COMMIT] "
@@ -190,7 +190,7 @@ jobs:
190190
echo "Additional content" >> README.md
191191
192192
- name: Amend and force push with lease
193-
uses: devops-infra/action-commit-push@v1.4.0
193+
uses: devops-infra/action-commit-push@v1.5.0
194194
with:
195195
github_token: ${{ secrets.GITHUB_TOKEN }}
196196
commit_message: ${{ github.event.inputs.new_commit_message }}
@@ -219,7 +219,7 @@ jobs:
219219
echo "Updated" >> work/repo/README.md
220220
221221
- name: Commit and push changes
222-
uses: devops-infra/action-commit-push@v1.4.0
222+
uses: devops-infra/action-commit-push@v1.5.0
223223
with:
224224
github_token: ${{ secrets.GITHUB_TOKEN }}
225225
repository_path: work/repo
@@ -231,7 +231,7 @@ Override the git author/committer identity used by the action.
231231

232232
```yaml
233233
- name: Commit and push with custom identity
234-
uses: devops-infra/action-commit-push@v1.4.0
234+
uses: devops-infra/action-commit-push@v1.5.0
235235
with:
236236
github_token: ${{ secrets.GITHUB_TOKEN }}
237237
commit_message: "test(commit-push): custom identity"
@@ -258,7 +258,7 @@ This action can sign generated commits by configuring repository-local git signi
258258

259259
```yaml
260260
- name: Commit and push signed changes
261-
uses: devops-infra/action-commit-push@v1.4.0
261+
uses: devops-infra/action-commit-push@v1.5.0
262262
with:
263263
github_token: ${{ secrets.GITHUB_TOKEN }}
264264
commit_message: "test(commit-push): signed with gpg"
@@ -271,7 +271,7 @@ This action can sign generated commits by configuring repository-local git signi
271271

272272
```yaml
273273
- name: Commit and push SSH-signed changes
274-
uses: devops-infra/action-commit-push@v1.4.0
274+
uses: devops-infra/action-commit-push@v1.5.0
275275
with:
276276
github_token: ${{ secrets.GITHUB_TOKEN }}
277277
commit_message: "test(commit-push): signed with ssh"
@@ -291,7 +291,7 @@ When using `amend: true`, you have several options for handling the commit messa
291291

292292
1. **Change the commit message**: Set `commit_message` to provide a new message
293293
```yaml
294-
- uses: devops-infra/action-commit-push@v1.4.0
294+
- uses: devops-infra/action-commit-push@v1.5.0
295295
with:
296296
github_token: ${{ secrets.GITHUB_TOKEN }}
297297
commit_message: "Fixed typo in documentation"
@@ -301,7 +301,7 @@ When using `amend: true`, you have several options for handling the commit messa
301301

302302
2. **Keep existing message**: Set `no_edit: true` to keep the original commit message
303303
```yaml
304-
- uses: devops-infra/action-commit-push@v1.4.0
304+
- uses: devops-infra/action-commit-push@v1.5.0
305305
with:
306306
github_token: ${{ secrets.GITHUB_TOKEN }}
307307
amend: true
@@ -350,10 +350,10 @@ jobs:
350350
steps:
351351
- uses: actions/checkout@v6
352352
353-
- uses: devops-infra/action-commit-push@v1.4.0
353+
- uses: devops-infra/action-commit-push@v1.5.0
354354
id: Pin patch version
355355
356-
- uses: devops-infra/action-commit-push@v1.4
356+
- uses: devops-infra/action-commit-push@v1.5
357357
id: Pin minor version
358358
359359
- uses: devops-infra/action-commit-push@v1

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ outputs:
8989
description: Name of the branch code was pushed into
9090
runs:
9191
using: docker
92-
image: docker://devopsinfra/action-commit-push:v1.4.0
92+
image: docker://devopsinfra/action-commit-push:v1.5.0
9393
env:
9494
GITHUB_TOKEN: ${{ inputs.github_token }}
9595
branding:

0 commit comments

Comments
 (0)