diff --git a/CHANGELOG.md b/CHANGELOG.md index 23d528e8..17dbb772 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# [3.2.0](https://github.com/paambaati/codeclimate-action/compare/v3.1.0...v3.2.0) (2022-10-21) + + +### Bug Fixes + +* **ci:** rebuild and republish to use new branch and workflows ([0c99fb3](https://github.com/paambaati/codeclimate-action/commit/0c99fb3d11aa2bbf8bf94ed90bd4955348c6338b)) +* **ci:** use the un-broken latest version of the workflow ([0fe0643](https://github.com/paambaati/codeclimate-action/commit/0fe06436de76fed68e37a8d6001f6ba46ba23f26)) + + +### Features + +* **core:** support fork PRs. ([70a75ac](https://github.com/paambaati/codeclimate-action/commit/70a75acf3c0eaae19bee5fb425f63e455356daf7)), closes [#627](https://github.com/paambaati/codeclimate-action/issues/627) + ## [3.1.1](https://github.com/paambaati/codeclimate-action/compare/v3.1.0...v3.1.1) (2022-10-20) diff --git a/README.md b/README.md index 9120bf39..b9f9aa01 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ This action requires that you set the [`CC_TEST_REPORTER_ID`](https://docs.codec ```yaml steps: - name: Test & publish code coverage - uses: paambaati/codeclimate-action@v3.1.1 + uses: paambaati/codeclimate-action@v3.2.0 env: CC_TEST_REPORTER_ID: with: @@ -46,7 +46,7 @@ When you've already generated the coverage report in a previous step and wish to ```yaml steps: - name: Test & publish code coverage - uses: paambaati/codeclimate-action@v3.1.1 + uses: paambaati/codeclimate-action@v3.2.0 env: CC_TEST_REPORTER_ID: ``` @@ -58,7 +58,7 @@ This action supports basic glob patterns to search for files matching given patt ```yaml steps: - name: Test & publish code coverage - uses: paambaati/codeclimate-action@v3.1.1 + uses: paambaati/codeclimate-action@v3.2.0 env: CC_TEST_REPORTER_ID: with: @@ -72,7 +72,7 @@ steps: ```yaml steps: - name: Test & publish code coverage - uses: paambaati/codeclimate-action@v3.1.1 + uses: paambaati/codeclimate-action@v3.2.0 env: # Set CC_TEST_REPORTER_ID as secret of your repo CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}} @@ -113,7 +113,7 @@ module.exports = { ```yaml steps: - name: Test & publish code coverage - uses: paambaati/codeclimate-action@v3.1.1 + uses: paambaati/codeclimate-action@v3.2.0 env: CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}} with: diff --git a/package-lock.json b/package-lock.json index a422c01e..3ec93469 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "codeclimate-action", - "version": "3.1.1", + "version": "3.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "codeclimate-action", - "version": "3.1.1", + "version": "3.2.0", "license": "MIT", "dependencies": { "@actions/core": "1.10.0", diff --git a/package.json b/package.json index 996501f1..cc6663a3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codeclimate-action", - "version": "3.1.1", + "version": "3.2.0", "private": true, "description": "Publish code coverage to Code Climate", "main": "lib/main.js",