File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -507,7 +507,10 @@ jobs:
507507
508508 - name : Upload coverage
509509 # any except canceled or skipped
510- if : always() && (steps.test_report.outcome == 'success')
510+ if : >-
511+ always() &&
512+ (steps.test_report.outcome == 'success') &&
513+ startsWith(github.repository, 'LizardByte/')
511514 uses : codecov/codecov-action@v4
512515 with :
513516 fail_ci_if_error : true
@@ -832,7 +835,10 @@ jobs:
832835
833836 - name : Upload coverage
834837 # any except canceled or skipped
835- if : always() && (steps.test_report.outcome == 'success')
838+ if : >-
839+ always() &&
840+ (steps.test_report.outcome == 'success') &&
841+ startsWith(github.repository, 'LizardByte/')
836842 uses : codecov/codecov-action@v4
837843 with :
838844 fail_ci_if_error : false # todo: re-enable this when action is fixed
@@ -1069,7 +1075,10 @@ jobs:
10691075
10701076 - name : Upload coverage
10711077 # any except canceled or skipped
1072- if : always() && (steps.test_report.outcome == 'success')
1078+ if : >-
1079+ always() &&
1080+ (steps.test_report.outcome == 'success') &&
1081+ startsWith(github.repository, 'LizardByte/')
10731082 uses : codecov/codecov-action@v4
10741083 with :
10751084 fail_ci_if_error : false
You can’t perform that action at this time.
0 commit comments