release: v7.0.0

This commit is contained in:
Federico Grandi
2021-01-16 17:16:11 +01:00
parent 267e04bd5b
commit b3c7c1e078
4 changed files with 15 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ This action lets you choose the path that you want to use when adding & committi
Add a step like this to your workflow:
```yaml
- uses: EndBug/add-and-commit@v6 # You can change this to use a specific version
- uses: EndBug/add-and-commit@v7 # You can change this to use a specific version
with:
# The arguments for the `git add` command (see the paragraph below for more info)
# Default: '.'
@@ -130,7 +130,7 @@ jobs:
run: eslint "src/**" --fix
- name: Commit changes
uses: EndBug/add-and-commit@v6
uses: EndBug/add-and-commit@v7
with:
author_name: Your Name
author_email: mail@example.com
@@ -159,7 +159,7 @@ jobs:
- run: echo "123" > ./pathToRepo/file.txt
# ...and then use the action as you would normally do, but providing the path to the repo
- uses: EndBug/add-and-commit@v6
- uses: EndBug/add-and-commit@v7
with:
message: 'Add the very useful text file'
add: '*.txt --force'