Skip to content

Commit

Permalink
release: v7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EndBug committed Jan 16, 2021
1 parent 267e04b commit b3c7c1e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [7.0.0] - 2021-01-16

### Changed:

- **[BREAKING]** The token input has been removed: author info will be filled using the GitHub Actor, instead of fetching info from the GitHub API.
The commits will be authored using the GitHub no-reply email associated with the account: username@users.noreply.github.com
- **[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).

## [6.2.0] - 2020-12-23

### Added:
Expand Down Expand Up @@ -205,7 +213,7 @@ First release

#

[unreleased]: https://github.com/EndBug/add-and-commit/compare/v6.2.0...HEAD
[unreleased]: https://github.com/EndBug/add-and-commit/compare/v7.0.0...HEAD
[1.0.0]: https://github.com/EndBug/add-and-commit/tree/v1.0.0
[2.0.0]: https://github.com/EndBug/add-and-commit/compare/v1.0.0...v2.0.0
[2.1.0]: https://github.com/EndBug/add-and-commit/compare/v2.0.0...v2.1.0
Expand Down Expand Up @@ -234,3 +242,4 @@ First release
[6.0.0]: https://github.com/EndBug/add-and-commit/compare/v5.3.0...v6.0.0
[6.1.0]: https://github.com/EndBug/add-and-commit/compare/v6.0.0...v6.1.0
[6.2.0]: https://github.com/EndBug/add-and-commit/compare/v6.1.0...v6.2.0
[7.0.0]: https://github.com/EndBug/add-and-commit/compare/v6.2.0...v7.0.0
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: '.'
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "add-and-commit",
"version": "6.2.0",
"version": "7.0.0",
"description": "Add & commit files from a path directly from GitHub Actions",
"main": "lib/index.js",
"scripts": {
Expand Down

0 comments on commit b3c7c1e

Please sign in to comment.