From 31af5a6aeab660ccacbb023136c68b6920cc30a8 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Thu, 8 Apr 2021 01:05:05 +0200 Subject: [PATCH 1/2] fix(ci/GHA): run for any pull request --- .github/workflows/main.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index eff5c33adef..ef0434e9db5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,9 +8,6 @@ on: tags: - "*" pull_request: - branches: - - my-master - - "[0-9]+.[0-9]+.x" jobs: tests: From 46ba81933bc536f01933736413576814477acb91 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Sat, 22 May 2021 13:10:45 +0200 Subject: [PATCH 2/2] ci(codecov): remove "-X s3" --- .ci/report-coverage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/report-coverage.sh b/.ci/report-coverage.sh index 34fee793697..4e6ec06b257 100755 --- a/.ci/report-coverage.sh +++ b/.ci/report-coverage.sh @@ -6,5 +6,5 @@ set -ex curl -S -L --connect-timeout 5 --retry 6 -s -o /tmp/codecov.sh https://codecov.io/bash for _ in 1 2 3 4 5; do - bash /tmp/codecov.sh -Z -X fix -X s3 -f coverage.xml "$@" && break + bash /tmp/codecov.sh -Z -X fix -f coverage.xml "$@" && break done