mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 02:56:56 +08:00
Added default values to secrets in case a service demanding a secret isn't used.
This commit is contained in:
3
.github/workflows/CompletePipeline.yml
vendored
3
.github/workflows/CompletePipeline.yml
vendored
@@ -117,12 +117,15 @@ on:
|
||||
PYPI_TOKEN:
|
||||
description: "Token for pushing releases to PyPI."
|
||||
required: false
|
||||
default: unset
|
||||
CODECOV_TOKEN:
|
||||
description: "Token for pushing coverage and unittest results to Codecov."
|
||||
required: false
|
||||
default: unset
|
||||
CODACY_PROJECT_TOKEN:
|
||||
description: "Token for pushing coverage results to Codacy."
|
||||
required: false
|
||||
default: unset
|
||||
|
||||
jobs:
|
||||
ConfigParams:
|
||||
|
||||
1
.github/workflows/CoverageCollection.yml
vendored
1
.github/workflows/CoverageCollection.yml
vendored
@@ -63,6 +63,7 @@ on:
|
||||
codacy_token:
|
||||
description: 'Token to push result to codacy.'
|
||||
required: true
|
||||
default: unset
|
||||
|
||||
jobs:
|
||||
|
||||
|
||||
2
.github/workflows/PublishCoverageResults.yml
vendored
2
.github/workflows/PublishCoverageResults.yml
vendored
@@ -97,9 +97,11 @@ on:
|
||||
CODECOV_TOKEN:
|
||||
description: 'Token to push result to Codecov.'
|
||||
required: true
|
||||
default: unset
|
||||
CODACY_TOKEN:
|
||||
description: 'Token to push result to Codacy.'
|
||||
required: true
|
||||
default: unset
|
||||
|
||||
jobs:
|
||||
PublishCoverageResults:
|
||||
|
||||
1
.github/workflows/PublishOnPyPI.yml
vendored
1
.github/workflows/PublishOnPyPI.yml
vendored
@@ -48,6 +48,7 @@ on:
|
||||
PYPI_TOKEN:
|
||||
description: "Token for pushing releases to PyPI"
|
||||
required: false
|
||||
default: unset
|
||||
|
||||
jobs:
|
||||
|
||||
|
||||
1
.github/workflows/PublishTestResults.yml
vendored
1
.github/workflows/PublishTestResults.yml
vendored
@@ -78,6 +78,7 @@ on:
|
||||
CODECOV_TOKEN:
|
||||
description: 'Token to push result to Codecov.'
|
||||
required: true
|
||||
default: unset
|
||||
|
||||
jobs:
|
||||
PublishTestResults:
|
||||
|
||||
Reference in New Issue
Block a user