Skip to content

Commit 7ea5273

Browse files
committed
docs: update README to new version tag
1 parent 0294aa0 commit 7ea5273

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You can use this GitHub Action to commit changes made in your workflow run direc
1818
Add a step like this to your workflow:
1919

2020
```yaml
21-
- uses: EndBug/add-and-commit@v7 # You can change this to use a specific version.
21+
- uses: EndBug/add-and-commit@v8 # You can change this to use a specific version.
2222
with:
2323
# The arguments for the `git add` command (see the paragraph below for more info)
2424
# Default: '.'
@@ -182,7 +182,7 @@ jobs:
182182
build:
183183
runs-on: ubuntu-latest
184184
steps:
185-
- uses: EndBug/add-and-commit@v7
185+
- uses: EndBug/add-and-commit@v8
186186
with:
187187
default_author: github_actions
188188
```
@@ -192,7 +192,7 @@ You can also use the `committer_name` and `committer_email` inputs to make it ap
192192
<img src="https://user-images.githubusercontent.com/26386270/130594168-1d910710-e2d0-4b06-9324-cbe5dde59154.png" height=70/>
193193

194194
```yaml
195-
- uses: EndBug/add-and-commit@v7
195+
- uses: EndBug/add-and-commit@v8
196196
with:
197197
message: Show GitHub Actions logo
198198
committer_name: GitHub Actions
@@ -202,7 +202,7 @@ You can also use the `committer_name` and `committer_email` inputs to make it ap
202202
<img src="https://user-images.githubusercontent.com/26386270/130594443-b881fae7-3064-4020-a4cc-6db37ef0df65.png" height=70/>
203203

204204
```yaml
205-
- uses: EndBug/add-and-commit@v7
205+
- uses: EndBug/add-and-commit@v8
206206
with:
207207
message: Show GitHub logo
208208
committer_name: GitHub Actions
@@ -237,7 +237,7 @@ jobs:
237237
run: eslint "src/**" --fix
238238
239239
- name: Commit changes
240-
uses: EndBug/add-and-commit@v7
240+
uses: EndBug/add-and-commit@v8
241241
with:
242242
author_name: Your Name
243243
author_email: mail@example.com
@@ -268,7 +268,7 @@ jobs:
268268
- run: echo "123" > ./pathToRepo/file.txt
269269
270270
# ...and then use the action as you would normally do, but providing the path to the repo
271-
- uses: EndBug/add-and-commit@v7
271+
- uses: EndBug/add-and-commit@v8
272272
with:
273273
message: 'Add the very useful text file'
274274
add: '*.txt --force'

0 commit comments

Comments
 (0)