@@ -18,7 +18,7 @@ You can use this GitHub Action to commit changes made in your workflow run direc
18
18
Add a step like this to your workflow:
19
19
20
20
``` 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.
22
22
with :
23
23
# The arguments for the `git add` command (see the paragraph below for more info)
24
24
# Default: '.'
@@ -182,7 +182,7 @@ jobs:
182
182
build:
183
183
runs-on: ubuntu-latest
184
184
steps:
185
- - uses: EndBug/add-and-commit@v7
185
+ - uses: EndBug/add-and-commit@v8
186
186
with:
187
187
default_author: github_actions
188
188
` ` `
@@ -192,7 +192,7 @@ You can also use the `committer_name` and `committer_email` inputs to make it ap
192
192
<img src="https://user-images.githubusercontent.com/26386270/130594168-1d910710-e2d0-4b06-9324-cbe5dde59154.png" height=70/>
193
193
194
194
` ` ` yaml
195
- - uses: EndBug/add-and-commit@v7
195
+ - uses: EndBug/add-and-commit@v8
196
196
with:
197
197
message: Show GitHub Actions logo
198
198
committer_name: GitHub Actions
@@ -202,7 +202,7 @@ You can also use the `committer_name` and `committer_email` inputs to make it ap
202
202
<img src="https://user-images.githubusercontent.com/26386270/130594443-b881fae7-3064-4020-a4cc-6db37ef0df65.png" height=70/>
203
203
204
204
` ` ` yaml
205
- - uses: EndBug/add-and-commit@v7
205
+ - uses: EndBug/add-and-commit@v8
206
206
with:
207
207
message: Show GitHub logo
208
208
committer_name: GitHub Actions
@@ -237,7 +237,7 @@ jobs:
237
237
run: eslint "src/**" --fix
238
238
239
239
- name: Commit changes
240
- uses: EndBug/add-and-commit@v7
240
+ uses: EndBug/add-and-commit@v8
241
241
with:
242
242
author_name: Your Name
243
243
author_email: mail@example.com
@@ -268,7 +268,7 @@ jobs:
268
268
- run: echo "123" > ./pathToRepo/file.txt
269
269
270
270
# ...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
272
272
with:
273
273
message: 'Add the very useful text file'
274
274
add: '*.txt --force'
0 commit comments