-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding logs to check the file.patch availability * Using debug to log * Do not fail but just log * Try logging as error * Fail when continueOnError is false * Validate file.patch before parsing * Setting release to 1.6.1
- Loading branch information
1 parent
94dfcf8
commit db72e7e
Showing
7 changed files
with
82 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ for [Creating a workflow file](https://help.github.com/en/articles/configuring-a | |
the files changed | ||
- `pass-emoji` - [*optional* {default: :green_apple:}] Emoji to use for pass status shown when 'coverage >= min coverage' (should be a Github supported emoji). | ||
- `fail-emoji` - [*optional* {default: :x:}] Emoji to use for fail status shown when 'coverage < min coverage' (should be a Github supported emoji). | ||
- `continue-on-error` - [*optional* {default: true}] If true, then do not fail the action on error, but log a warning | ||
- `debug-mode` - [*optional* {default: false}] If true, run the action in debug mode and get debug logs printed in console | ||
|
||
### Outputs | ||
|
@@ -60,7 +61,7 @@ jobs: | |
- name: Add coverage to PR | ||
id: jacoco | ||
uses: madrapps/[email protected] | ||
uses: madrapps/[email protected].1 | ||
with: | ||
paths: | | ||
${{ github.workspace }}/**/build/reports/jacoco/prodNormalDebugCoverage/prodNormalDebugCoverage.xml, | ||
|
@@ -110,7 +111,7 @@ refer [jacoco-android-playground](https://github.com/thsaravana/jacoco-android-p | |
```yaml | ||
- name: Jacoco Report to PR | ||
id: jacoco | ||
uses: madrapps/[email protected] | ||
uses: madrapps/[email protected].1 | ||
with: | ||
paths: ${{ github.workspace }}/build/reports/jacoco/testCoverage/testCoverage.xml | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -131,7 +132,7 @@ refer [jacoco-android-playground](https://github.com/thsaravana/jacoco-android-p | |
```yaml | ||
- name: Jacoco Report to PR | ||
id: jacoco | ||
uses: madrapps/[email protected] | ||
uses: madrapps/[email protected].1 | ||
with: | ||
paths: | | ||
${{ github.workspace }}/**/build/reports/jacoco/**/prodNormalDebugCoverage.xml, | ||
|
@@ -151,7 +152,7 @@ refer [jacoco-android-playground](https://github.com/thsaravana/jacoco-android-p | |
```yaml | ||
- name: Jacoco Report to PR | ||
id: jacoco | ||
uses: madrapps/[email protected] | ||
uses: madrapps/[email protected].1 | ||
with: | ||
paths: ${{ github.workspace }}/build/reports/jacoco/testCoverage/testCoverage.xml | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters