-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from samuelcolvin/env-vars
Env vars
- Loading branch information
Showing
4 changed files
with
29,243 additions
and
28,361 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
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 |
---|---|---|
@@ -1,26 +1,28 @@ | ||
name: 'Codecov' | ||
description: 'GitHub Action that uploads coverage reports for your repository to codecov.io' | ||
author: 'Ibrahim Ali <@ibrahim0814> | Codecov' | ||
inputs: | ||
inputs: | ||
name: | ||
description: 'User defined upload name. Visible in Codecov UI' | ||
required: false | ||
required: false | ||
token: | ||
description: 'Repository upload token - get it from codecov.io. Required only for private repositories' | ||
required: false | ||
required: false | ||
file: | ||
description: 'Path to coverage file to upload' | ||
required: false | ||
flags: | ||
description: 'Flag upload to group coverage metrics (e.g. unittests | integration | ui,chrome)' | ||
required: false | ||
env_vars: | ||
description: 'Environment variables to tag the upload with (e.g. PYTHON | OS,PYTHON)' | ||
required: false | ||
fail_ci_if_error: | ||
description: 'Specify whether or not CI build should fail if Codecov runs into an error during upload' | ||
required: false | ||
branding: | ||
color: 'red' | ||
color: 'red' | ||
icon: 'umbrella' | ||
runs: | ||
using: 'node12' | ||
main: 'dist/index.js' | ||
|
Oops, something went wrong.