Skip to content

Commit d5c080a

Browse files
author
Mikalai Radchuk
committed
Fix codecov-action params
* `functionalities` param is no longer exist. It was used to enable file fixes to ignore common lines from coverage. This feature is now seems to be on by default. * Adding `disable_search` because we do not need for the codecov action to search for coverage files: we explicitly provide files. Signed-off-by: Mikalai Radchuk <[email protected]>
1 parent f301f55 commit d5c080a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- uses: codecov/codecov-action@v4
4040
with:
41+
disable_search: true
4142
files: e2e-cover.out
4243
flags: e2e
43-
functionalities: fixes
4444
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/unit-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
2626
- uses: codecov/codecov-action@v4
2727
with:
28+
disable_search: true
2829
files: cover.out
2930
flags: unit
30-
functionalities: fixes
3131
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)