Skip to content

Commit 2096009

Browse files
committed
Bump version
1 parent 8063b07 commit 2096009

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: npm run build
2525

2626
- name: Commit changes
27-
uses: EndBug/add-and-commit@v2.2.0
27+
uses: EndBug/add-and-commit@v2.3.0
2828
with:
2929
force: true
3030
message: "[auto] Update compiled version"

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Add a step like this to your workflow:
1111

1212
```yaml
1313
- name: Commit changes # This is the step name that will be displayed in your runs
14-
uses: EndBug/add-and-commit@v2.1.1 # You can change this to use a specific version
14+
uses: EndBug/add-and-commit@v2.3.0 # You can change this to use a specific version
1515
with: # See more info about inputs below
1616
author_name: Your Name
1717
author_email: [email protected]
@@ -25,8 +25,8 @@ Add a step like this to your workflow:
2525
2626
### Inputs:
2727
28-
- `author_name` : the name of the user that will be displayed as the author of the commit
29-
- `author_email` : the email of the user that will be displayed as the author of the commit
28+
- `author_name` : the name of the user that will be displayed as the author of the commit, defaults to the author of the commit that triggered the run
29+
- `author_email` : the email of the user that will be displayed as the author of the commit, defaults to the author of the commit that triggered the run
3030
- `message` : the message for the commit
3131
- `path` : the path(s) to stage files from
3232
- `pattern` : the pattern that matches file names
@@ -44,7 +44,7 @@ This action only **adds** files so in order to commit a file deletion you need t
4444
```yaml
4545
- run: git rm delete_me.txt
4646
47-
- uses: EndBug/add-and-commit@v2.1.1
47+
- uses: EndBug/add-and-commit@v2.3.0
4848
with:
4949
author_name: Your Name
5050
author_email: [email protected]
@@ -84,7 +84,7 @@ jobs:
8484
run: eslint "src/**" --fix
8585
8686
- name: Commit changes
87-
uses: EndBug/add-and-commit@v2.1.1
87+
uses: EndBug/add-and-commit@v2.3.0
8888
with:
8989
author_name: Your Name
9090
author_email: [email protected]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "add-and-commit",
3-
"version": "2.1.1",
3+
"version": "2.3.0",
44
"description": "Add & commit files from a path directly from GitHub Actions",
55
"main": "lib/main.js",
66
"scripts": {

0 commit comments

Comments
 (0)