Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update env var #22

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/push-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ jobs:

- name: Create pull request into main
run: |
gh pr create --fill --base "main" --reviewer "codecov/report-upload"
gh pr create --fill --base "main" --reviewer "@codecov/report-upload"
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
2 changes: 1 addition & 1 deletion dist/codecov.sh
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ cc_cr_args+=( $(write_existing_args CC_PR) )
cc_cr_args+=( $(write_existing_args CC_SHA) )
cc_cr_args+=( $(write_existing_args CC_SLUG) )
cc_du_args=()
cc_du_args+=( $(write_existing_args CC_ENV) )
OLDIFS=$IFS;IFS=,
cc_du_args+=( $(write_existing_args CC_BRANCH) )
cc_du_args+=( $(write_existing_args CC_BUILD) )
Expand All @@ -143,7 +144,6 @@ cc_du_args+=( $(write_existing_args CC_DIR) )
cc_du_args+=( $(write_truthy_args CC_DISABLE_FILE_FIXES) )
cc_du_args+=( $(write_truthy_args CC_DISABLE_SEARCH) )
cc_du_args+=( $(write_truthy_args CC_DRY_RUN) )
cc_du_args+=( $(write_existing_args CC_ENV) )
if [ -n "$CC_EXCLUDES" ];
then
for directory in $CC_EXCLUDES; do
Expand Down
3 changes: 2 additions & 1 deletion scripts/set_do_upload_args.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

codecov_du_args=()

codecov_du_args+=( $(write_existing_args CODECOV_ENV) )

OLDIFS=$IFS;IFS=,

codecov_du_args+=( $(write_existing_args CODECOV_BRANCH) )
Expand All @@ -12,7 +14,6 @@ codecov_du_args+=( $(write_existing_args CODECOV_DIR) )
codecov_du_args+=( $(write_truthy_args CODECOV_DISABLE_FILE_FIXES) )
codecov_du_args+=( $(write_truthy_args CODECOV_DISABLE_SEARCH) )
codecov_du_args+=( $(write_truthy_args CODECOV_DRY_RUN) )
codecov_du_args+=( $(write_existing_args CODECOV_ENV) )

if [ -n "$CODECOV_EXCLUDES" ];
then
Expand Down
Loading