diff --git a/CHANGELOG.md b/CHANGELOG.md index 83b18431..e1d1f1d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +# [2.7.3] - 2020-10-01 +### Fixed +- 🐛 Default coverage command now correctly defaults to `''` - via [`#238`](https://github.com/paambaati/codeclimate-action/pull/238). This closes [`#235`](https://github.com/paambaati/codeclimate-action/issues/235). + # [2.7.2] - 2020-10-01 ### Fixed - 🐛 The entrypoint logic was fixed so the script will _actually_ run now - via [`#236`](https://github.com/paambaati/codeclimate-action/pull/236). This closes [`#235`](https://github.com/paambaati/codeclimate-action/issues/235). diff --git a/action.yml b/action.yml index 2b5723c5..5dddbfd3 100644 --- a/action.yml +++ b/action.yml @@ -8,7 +8,7 @@ inputs: coverageCommand: required: false description: 'Coverage command to execute' - default: 'yarn coverage' + default: '' workingDirectory: required: false description: 'Custom working directory for executing the coverage command'