You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On PR #3285, there is a file that has a TypeScript code coverage statistics workflow coverage_ts.yaml. This workflow will only run after CI.yaml has finished all its jobs and if it is on the default branch, which is the main branch. But some of the jobs in CI.yaml are currently failing, so to be able to test it after the merge to see if it is working, the condition used in coverage_ts.yaml is:
Primary Changes
----------------
1. Updated the condition in coverage_ts.yaml to run only
when the CI run is successful
Fixeshyperledger-cacti#3371
Signed-off-by: aldousalvarez <[email protected]>
Description
On PR #3285, there is a file that has a TypeScript code coverage statistics workflow
coverage_ts.yaml
. This workflow will only run afterCI.yaml
has finished all its jobs and if it is on the default branch, which is the main branch. But some of the jobs inCI.yaml
are currently failing, so to be able to test it after the merge to see if it is working, the condition used incoverage_ts.yaml
is:if: ${{ github.event.workflow_run.conclusion == 'failure' || github.event.workflow_run.conclusion == 'success' }}
and then once it is confirmed that it is working fine. We should just use success as the condition for coverage_ts.yaml
github.event.workflow_run.conclusion == 'success' }}
Acceptance Criteria
cc: @petermetz
The text was updated successfully, but these errors were encountered: