Skip to content

Commit b3c7c1e

Browse files
committed
release: v7.0.0
1 parent 267e04b commit b3c7c1e

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [7.0.0] - 2021-01-16
11+
12+
### Changed:
13+
14+
- **[BREAKING]** The token input has been removed: author info will be filled using the GitHub Actor, instead of fetching info from the GitHub API.
15+
The commits will be authored using the GitHub no-reply email associated with the account: [email protected]
16+
- **[BREAKING]** Because of the change above, the author will now be the user that triggered the action run, and not the author of the last commit: while the two are often the same person, there are instances where they might differ (e.g. when a workflow run is triggered manually).
17+
1018
## [6.2.0] - 2020-12-23
1119

1220
### Added:
@@ -205,7 +213,7 @@ First release
205213

206214
#
207215

208-
[unreleased]: https://github.com/EndBug/add-and-commit/compare/v6.2.0...HEAD
216+
[unreleased]: https://github.com/EndBug/add-and-commit/compare/v7.0.0...HEAD
209217
[1.0.0]: https://github.com/EndBug/add-and-commit/tree/v1.0.0
210218
[2.0.0]: https://github.com/EndBug/add-and-commit/compare/v1.0.0...v2.0.0
211219
[2.1.0]: https://github.com/EndBug/add-and-commit/compare/v2.0.0...v2.1.0
@@ -234,3 +242,4 @@ First release
234242
[6.0.0]: https://github.com/EndBug/add-and-commit/compare/v5.3.0...v6.0.0
235243
[6.1.0]: https://github.com/EndBug/add-and-commit/compare/v6.0.0...v6.1.0
236244
[6.2.0]: https://github.com/EndBug/add-and-commit/compare/v6.1.0...v6.2.0
245+
[7.0.0]: https://github.com/EndBug/add-and-commit/compare/v6.2.0...v7.0.0

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This action lets you choose the path that you want to use when adding & committi
1313
Add a step like this to your workflow:
1414

1515
```yaml
16-
- uses: EndBug/add-and-commit@v6 # You can change this to use a specific version
16+
- uses: EndBug/add-and-commit@v7 # You can change this to use a specific version
1717
with:
1818
# The arguments for the `git add` command (see the paragraph below for more info)
1919
# Default: '.'
@@ -130,7 +130,7 @@ jobs:
130130
run: eslint "src/**" --fix
131131
132132
- name: Commit changes
133-
uses: EndBug/add-and-commit@v6
133+
uses: EndBug/add-and-commit@v7
134134
with:
135135
author_name: Your Name
136136
author_email: [email protected]
@@ -159,7 +159,7 @@ jobs:
159159
- run: echo "123" > ./pathToRepo/file.txt
160160
161161
# ...and then use the action as you would normally do, but providing the path to the repo
162-
- uses: EndBug/add-and-commit@v6
162+
- uses: EndBug/add-and-commit@v7
163163
with:
164164
message: 'Add the very useful text file'
165165
add: '*.txt --force'

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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": "6.2.0",
3+
"version": "7.0.0",
44
"description": "Add & commit files from a path directly from GitHub Actions",
55
"main": "lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)