Skip to content

Commit

Permalink
chore(release): 2.3.0
Browse files Browse the repository at this point in the history
# [2.3.0](v2.2.6...v2.3.0) (2022-10-20)

### Bug Fixes

* **ci:** better version tagging ([e7ede07](e7ede07))
* **deps:** add missing dev-only dep to unblock typescript build ([9e22dcb](9e22dcb))
* fix quote escaping ([b952316](b952316))
* make the after-build error message intuitive ([de9fc1d](de9fc1d))
* unset default for coverageCommand ([843392a](843392a))

### Features

* checksum ang GPG verification utilities. ([8a68e94](8a68e94))
* declate new input option in action yaml ([dffe183](dffe183))
* implement verification methods ([3597522](3597522))
* verify reporter download ([#429](#429)) ([e4483ed](e4483ed))
  • Loading branch information
paambaati committed Oct 20, 2022
1 parent 79333ec commit 5fad1aa
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 8 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# [2.3.0](https://github.com/paambaati/codeclimate-action/compare/v2.2.6...v2.3.0) (2022-10-20)


### Bug Fixes

* **ci:** better version tagging ([e7ede07](https://github.com/paambaati/codeclimate-action/commit/e7ede07acfbc6a654693402829004a85e680e713))
* **deps:** add missing dev-only dep to unblock typescript build ([9e22dcb](https://github.com/paambaati/codeclimate-action/commit/9e22dcb3b7b5b5992a31f3577cf113dc2e950e03))
* fix quote escaping ([b952316](https://github.com/paambaati/codeclimate-action/commit/b952316beee3b903d42039bf8c627ee4c07fc228))
* make the after-build error message intuitive ([de9fc1d](https://github.com/paambaati/codeclimate-action/commit/de9fc1d31232bb8bf30513bedf53ff40231b108d))
* unset default for coverageCommand ([843392a](https://github.com/paambaati/codeclimate-action/commit/843392a8c1176f873b5fecc54e31ce6e8ac32d59))


### Features

* checksum ang GPG verification utilities. ([8a68e94](https://github.com/paambaati/codeclimate-action/commit/8a68e94c2970eea2ea0be901707e4baf241869e3))
* declate new input option in action yaml ([dffe183](https://github.com/paambaati/codeclimate-action/commit/dffe1839031e38034aeb1434c930f4a9524204a3))
* implement verification methods ([3597522](https://github.com/paambaati/codeclimate-action/commit/3597522e3aad9926fedb6dd418ec3d8b77aed0c1))
* verify reporter download ([#429](https://github.com/paambaati/codeclimate-action/issues/429)) ([e4483ed](https://github.com/paambaati/codeclimate-action/commit/e4483ed4ba41c889bad43c01fb00606224851627))

# Changelog
All notable changes to this project will be documented in this file.

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,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.0
uses: paambaati/codeclimate-action@v2.3.0
env:
CC_TEST_REPORTER_ID: <code_climate_reporter_id>
with:
Expand All @@ -41,7 +41,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.0
uses: paambaati/codeclimate-action@v2.3.0
env:
CC_TEST_REPORTER_ID: <code_climate_reporter_id>
```
Expand All @@ -53,7 +53,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.0
uses: paambaati/codeclimate-action@v2.3.0
env:
CC_TEST_REPORTER_ID: <code_climate_reporter_id>
with:
Expand All @@ -67,7 +67,7 @@ steps:
```yaml
steps:
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v3.1.0
uses: paambaati/codeclimate-action@v2.3.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 @@ -108,7 +108,7 @@ module.exports = {
```yaml
steps:
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v3.1.0
uses: paambaati/codeclimate-action@v2.3.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codeclimate-action",
"version": "3.1.0",
"version": "2.3.0",
"private": true,
"description": "Publish code coverage to Code Climate",
"main": "lib/main.js",
Expand Down

0 comments on commit 5fad1aa

Please sign in to comment.