Skip to content

Commit 0294aa0

Browse files
committed
release: v8.0.0
1 parent b936095 commit 0294aa0

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [8.0.0] - 2022-01-20
11+
12+
### Fixed:
13+
14+
- **[BREAKING]** The action will now work with whatever ref has been checked out, without pulling or switching branches by default. You can still pull using the `pull` input and create a new branch with the newly-added `new_branch` input. For more info, check commit [`6fdb34e`](https://github.com/EndBug/add-and-commit/commit/6fdb34ed01d242c909eeb7e31bf1c4d37db43a54).
15+
16+
### Removed:
17+
18+
- **[BREAKING]** The `signoff` input has been removed, use `commit` instead. (#331)
19+
- **[BREAKING]** The `pull_strategy` input has been removed, use `pull` instead.
20+
- **[BREAKING]** The `branch` and `branch_mode` inputs have been removed, check commit [`6fdb34e`](https://github.com/EndBug/add-and-commit/commit/6fdb34ed01d242c909eeb7e31bf1c4d37db43a54) for more info.
21+
22+
### Added:
23+
24+
- Added the `commit` input, that allows you to change the arguments for the `git commit` command. (#331)
25+
- Added the `new_branch` input. ([`6fdb34e`](https://github.com/EndBug/add-and-commit/commit/6fdb34ed01d242c909eeb7e31bf1c4d37db43a54))
26+
- Added the `commit_long_sha` output. (#349)
27+
1028
## [7.5.0] - 2021-12-03
1129

1230
### Added:
@@ -272,7 +290,7 @@ First release
272290

273291
#
274292

275-
[unreleased]: https://github.com/EndBug/add-and-commit/compare/v7.5.0...HEAD
293+
[unreleased]: https://github.com/EndBug/add-and-commit/compare/v8.0.0...HEAD
276294
[1.0.0]: https://github.com/EndBug/add-and-commit/tree/v1.0.0
277295
[2.0.0]: https://github.com/EndBug/add-and-commit/compare/v1.0.0...v2.0.0
278296
[2.1.0]: https://github.com/EndBug/add-and-commit/compare/v2.0.0...v2.1.0
@@ -310,3 +328,4 @@ First release
310328
[7.3.0]: https://github.com/EndBug/add-and-commit/compare/v7.2.1...v7.3.0
311329
[7.4.0]: https://github.com/EndBug/add-and-commit/compare/v7.3.0...v7.4.0
312330
[7.5.0]: https://github.com/EndBug/add-and-commit/compare/v7.4.0...v7.5.0
331+
[8.0.0]: https://github.com/EndBug/add-and-commit/compare/v7.5.0...v8.0.0

package-lock.json

Lines changed: 3 additions & 2 deletions
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": "7.5.0",
3+
"version": "8.0.0",
44
"private": true,
55
"description": "Add & commit files from a path directly from GitHub Actions",
66
"main": "lib/index.js",

0 commit comments

Comments
 (0)