Skip to content

Commit

Permalink
chore(release): 3.2.0
Browse files Browse the repository at this point in the history
# [3.2.0](v3.1.0...v3.2.0) (2022-10-21)

### Bug Fixes

* **ci:** rebuild and republish to use new branch and workflows ([0c99fb3](0c99fb3))
* **ci:** use the un-broken latest version of the workflow ([0fe0643](0fe0643))

### Features

* **core:** support fork PRs. ([70a75ac](70a75ac)), closes [#627](#627)
  • Loading branch information
paambaati committed Oct 21, 2022
1 parent eb851ec commit a38bca5
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
13 changes: 13 additions & 0 deletions 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)


Expand Down
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -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: <code_climate_reporter_id>
with:
Expand All @@ -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: <code_climate_reporter_id>
```
Expand All @@ -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: <code_climate_reporter_id>
with:
Expand All @@ -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}}
Expand Down Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion 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",
Expand Down

0 comments on commit a38bca5

Please sign in to comment.