Skip to content

Commit 0ab2c40

Browse files
fix: update env var
1 parent c4d213e commit 0ab2c40

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/push-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@ jobs:
6565

6666
- name: Create pull request into main
6767
run: |
68-
gh pr create --fill --base "main" --reviewer "codecov/report-upload"
68+
gh pr create --fill --base "main" --reviewer "@codecov/report-upload"
6969
env:
7070
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}

dist/codecov.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ cc_cr_args+=( $(write_existing_args CC_PR) )
134134
cc_cr_args+=( $(write_existing_args CC_SHA) )
135135
cc_cr_args+=( $(write_existing_args CC_SLUG) )
136136
cc_du_args=()
137+
cc_du_args+=( $(write_existing_args CC_ENV) )
137138
OLDIFS=$IFS;IFS=,
138139
cc_du_args+=( $(write_existing_args CC_BRANCH) )
139140
cc_du_args+=( $(write_existing_args CC_BUILD) )
@@ -143,7 +144,6 @@ cc_du_args+=( $(write_existing_args CC_DIR) )
143144
cc_du_args+=( $(write_truthy_args CC_DISABLE_FILE_FIXES) )
144145
cc_du_args+=( $(write_truthy_args CC_DISABLE_SEARCH) )
145146
cc_du_args+=( $(write_truthy_args CC_DRY_RUN) )
146-
cc_du_args+=( $(write_existing_args CC_ENV) )
147147
if [ -n "$CC_EXCLUDES" ];
148148
then
149149
for directory in $CC_EXCLUDES; do

scripts/set_do_upload_args.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
codecov_du_args=()
44

5+
codecov_du_args+=( $(write_existing_args CODECOV_ENV) )
6+
57
OLDIFS=$IFS;IFS=,
68

79
codecov_du_args+=( $(write_existing_args CODECOV_BRANCH) )
@@ -12,7 +14,6 @@ codecov_du_args+=( $(write_existing_args CODECOV_DIR) )
1214
codecov_du_args+=( $(write_truthy_args CODECOV_DISABLE_FILE_FIXES) )
1315
codecov_du_args+=( $(write_truthy_args CODECOV_DISABLE_SEARCH) )
1416
codecov_du_args+=( $(write_truthy_args CODECOV_DRY_RUN) )
15-
codecov_du_args+=( $(write_existing_args CODECOV_ENV) )
1617

1718
if [ -n "$CODECOV_EXCLUDES" ];
1819
then

0 commit comments

Comments
 (0)