-
-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: [email protected] | ||
- **[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: | ||
|
@@ -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 | ||
|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: [email protected] | ||
|
@@ -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' | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters