File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 65
65
66
66
- name : Create pull request into main
67
67
run : |
68
- gh pr create --fill --base "main" --reviewer "codecov/report-upload"
68
+ gh pr create --fill --base "main" --reviewer "@ codecov/report-upload"
69
69
env :
70
70
GITHUB_TOKEN : ${{ steps.app-token.outputs.token }}
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- CC_WRAPPER_VERSION=" 0.0.23 "
2
+ CC_WRAPPER_VERSION=" 0.0.24 "
3
3
set +u
4
4
say () {
5
5
echo -e " $1 "
@@ -134,6 +134,7 @@ cc_cr_args+=( $(write_existing_args CC_PR) )
134
134
cc_cr_args+=( $( write_existing_args CC_SHA) )
135
135
cc_cr_args+=( $( write_existing_args CC_SLUG) )
136
136
cc_du_args=()
137
+ cc_du_args+=( $( write_existing_args CC_ENV) )
137
138
OLDIFS=$IFS ; IFS=,
138
139
cc_du_args+=( $( write_existing_args CC_BRANCH) )
139
140
cc_du_args+=( $( write_existing_args CC_BUILD) )
@@ -143,7 +144,6 @@ cc_du_args+=( $(write_existing_args CC_DIR) )
143
144
cc_du_args+=( $( write_truthy_args CC_DISABLE_FILE_FIXES) )
144
145
cc_du_args+=( $( write_truthy_args CC_DISABLE_SEARCH) )
145
146
cc_du_args+=( $( write_truthy_args CC_DRY_RUN) )
146
- cc_du_args+=( $( write_existing_args CC_ENV) )
147
147
if [ -n " $CC_EXCLUDES " ];
148
148
then
149
149
for directory in $CC_EXCLUDES ; do
Original file line number Diff line number Diff line change 2
2
3
3
codecov_du_args=()
4
4
5
+ codecov_du_args+=( $( write_existing_args CODECOV_ENV) )
6
+
5
7
OLDIFS=$IFS ; IFS=,
6
8
7
9
codecov_du_args+=( $( write_existing_args CODECOV_BRANCH) )
@@ -12,7 +14,6 @@ codecov_du_args+=( $(write_existing_args CODECOV_DIR) )
12
14
codecov_du_args+=( $( write_truthy_args CODECOV_DISABLE_FILE_FIXES) )
13
15
codecov_du_args+=( $( write_truthy_args CODECOV_DISABLE_SEARCH) )
14
16
codecov_du_args+=( $( write_truthy_args CODECOV_DRY_RUN) )
15
- codecov_du_args+=( $( write_existing_args CODECOV_ENV) )
16
17
17
18
if [ -n " $CODECOV_EXCLUDES " ];
18
19
then
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- CODECOV_WRAPPER_VERSION=" 0.0.23 "
2
+ CODECOV_WRAPPER_VERSION=" 0.0.24 "
You can’t perform that action at this time.
0 commit comments