diff --git a/CHANGELOG.md b/CHANGELOG.md index b03685f..65fa1d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# [2.0.0](https://github.com/wagoid/commitlint-github-action/compare/v1.8.0...v2.0.0) (2020-08-02) + +### Features + +- upgrade commitlint dependencies to v9 ([a413a3f](https://github.com/wagoid/commitlint-github-action/commit/a413a3f439c38181670fdd6d1be4b528c942af4b)) +- use action input instead of env var to get the github token ([18e9bff](https://github.com/wagoid/commitlint-github-action/commit/18e9bff0e6956f1bfe76e18cc582c6cb5d3b9800)) + +### BREAKING CHANGES + +- GITHUB_TOKEN env var is now ignored. In case a custom token is needed, + it'll be necessary to pass it via the `token` input from now on. +- this includes breaking changes from commitlint v9, + like the fact that `improvement` type is now rejected in `@commitlint/config-conventional`. + # [1.8.0](https://github.com/wagoid/commitlint-github-action/compare/v1.7.0...v1.8.0) (2020-08-02) diff --git a/action.yml b/action.yml index 9912ed7..982b194 100644 --- a/action.yml +++ b/action.yml @@ -32,7 +32,7 @@ outputs: description: The error and warning messages for each one of the analyzed commits runs: using: 'docker' - image: 'docker://wagoid/commitlint-github-action:1.8.0' + image: 'docker://wagoid/commitlint-github-action:2.0.0' branding: icon: 'check-square' color: 'blue' diff --git a/package-lock.json b/package-lock.json index 3d716f3..e6d2d99 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "commitlint-github-action", - "version": "1.8.0", + "version": "2.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 5b127b6..9433f0e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "commitlint-github-action", - "version": "1.8.0", + "version": "2.0.0", "description": "commitlint github action", "main": "index.js", "scripts": {