Skip to content

Commit a26f63b

Browse files
committed
release: v6.1.0
1 parent a71372f commit a26f63b

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [6.1.0] - 2020-12-22
11+
12+
### Added:
13+
14+
- `token` input: you can now use this instead of setting the `GITHUB_TOKEN` env variable, which has been deprecated. This input is optional, its default value is the default `secrets.GITHUB_TOKEN`. You only need to use this if you want the action to run with a PAT. (issue #110)
15+
16+
### Deprecated:
17+
18+
- `GITHUB_TOKEN`: the use of this env variable is now deprecated in favor of the `token` input, you'll start receiving warnings if you keep using it. (issue #110)
19+
1020
## [6.0.0] - 2020-12-22
1121

1222
### Added:
@@ -216,3 +226,4 @@ First release
216226
[5.2.0]: https://github.com/EndBug/add-and-commit/compare/v5.1.2...v5.2.0
217227
[5.3.0]: https://github.com/EndBug/add-and-commit/compare/v5.2.0...v5.3.0
218228
[6.0.0]: https://github.com/EndBug/add-and-commit/compare/v5.3.0...v6.0.0
229+
[6.1.0]: https://github.com/EndBug/add-and-commit/compare/v6.0.0...v6.1.0

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "add-and-commit",
3-
"version": "6.0.0",
3+
"version": "6.1.0",
44
"description": "Add & commit files from a path directly from GitHub Actions",
55
"main": "lib/index.js",
66
"scripts": {
@@ -9,7 +9,7 @@
99
"lint": "eslint --ext .ts src",
1010
"lint:fix": "eslint --ext .ts --fix src",
1111
"all-contributors-badge": "ts-node scripts/all-contributors-badge",
12-
"changelog": "ts-node scripts/changelog.ts",
12+
"changelog": "ts-node scripts/changelog.ts && npm i",
1313
"test": "echo \"Error: no test specified\" && exit 1"
1414
},
1515
"husky": {

0 commit comments

Comments
 (0)