Skip to content

Commit 25f50b4

Browse files
Merge pull request #23 from codecov/th/fix-env-change
fix: update env var
2 parents c4d213e + b908683 commit 25f50b4

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
CC_WRAPPER_VERSION="0.0.23"
2+
CC_WRAPPER_VERSION="0.0.24"
33
set +u
44
say() {
55
echo -e "$1"
@@ -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

scripts/version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/usr/bin/env bash
2-
CODECOV_WRAPPER_VERSION="0.0.23"
2+
CODECOV_WRAPPER_VERSION="0.0.24"

0 commit comments

Comments
 (0)