Skip to content

Commit 8a2d9d7

Browse files
🚀 Bump version to v1.0.3 (#176)
Files changed: M README.md M action.yml Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent b4382c1 commit 8a2d9d7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ This action supports three tag levels for flexible versioning:
4747

4848
```yaml
4949
- name: Run the Action
50-
uses: devops-infra/action-commit-push@v1.0.2
50+
uses: devops-infra/action-commit-push@v1.0.3
5151
with:
5252
github_token: "${{ secrets.GITHUB_TOKEN }}"
5353
add_timestamp: true
@@ -104,7 +104,7 @@ jobs:
104104
find . -type f -name "*.md" -print0 | xargs -0 sed -i "s/foo/bar/g"
105105
106106
- name: Commit and push changes
107-
uses: devops-infra/action-commit-push@v1.0.2
107+
uses: devops-infra/action-commit-push@v1.0.3
108108
with:
109109
github_token: ${{ secrets.GITHUB_TOKEN }}
110110
commit_message: "Replace foo with bar"
@@ -169,7 +169,7 @@ jobs:
169169
echo "Additional content" >> README.md
170170
171171
- name: Amend and force push with lease
172-
uses: devops-infra/action-commit-push@v1.0.2
172+
uses: devops-infra/action-commit-push@v1.0.3
173173
with:
174174
github_token: ${{ secrets.GITHUB_TOKEN }}
175175
commit_message: ${{ github.event.inputs.new_commit_message }}
@@ -182,7 +182,7 @@ When using `amend: true`, you have several options for handling the commit messa
182182

183183
1. **Change the commit message**: Set `commit_message` to provide a new message
184184
```yaml
185-
- uses: devops-infra/action-commit-push@v1.0.2
185+
- uses: devops-infra/action-commit-push@v1.0.3
186186
with:
187187
github_token: ${{ secrets.GITHUB_TOKEN }}
188188
commit_message: "Fixed typo in documentation"
@@ -192,7 +192,7 @@ When using `amend: true`, you have several options for handling the commit messa
192192

193193
2. **Keep existing message**: Set `no_edit: true` to keep the original commit message
194194
```yaml
195-
- uses: devops-infra/action-commit-push@v1.0.2
195+
- uses: devops-infra/action-commit-push@v1.0.3
196196
with:
197197
github_token: ${{ secrets.GITHUB_TOKEN }}
198198
amend: true
@@ -238,7 +238,7 @@ jobs:
238238
steps:
239239
- uses: actions/checkout@v5
240240
241-
- uses: devops-infra/action-commit-push@v1.0.2
241+
- uses: devops-infra/action-commit-push@v1.0.3
242242
id: Pin patch version
243243
244244
- uses: devops-infra/action-commit-push@v1.0

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ outputs:
4949
description: Name of the branch code was pushed into
5050
runs:
5151
using: docker
52-
image: docker://devopsinfra/action-commit-push:v1.0.2
52+
image: docker://devopsinfra/action-commit-push:v1.0.3
5353
env:
5454
GITHUB_TOKEN: ${{ inputs.github_token }}
5555
branding:

0 commit comments

Comments
 (0)