From 917964732b35ad5ba29d2b6d5fb9f8733a45701e Mon Sep 17 00:00:00 2001 From: "Zaiming (Stone) Shi" Date: Sat, 14 Oct 2023 19:49:01 +0200 Subject: [PATCH 1/2] fix(rebar.config): change to use project_plugins so a warpping project will not have to download this dependency --- rebar.config | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rebar.config b/rebar.config index abb132a0..a7104ab6 100644 --- a/rebar.config +++ b/rebar.config @@ -37,10 +37,10 @@ %% Coveralls -{plugins , [{coveralls, {git, "https://github.com/qzhuyan/coveralls-erl", {branch, "qzhuyan"}}}]}. -{cover_enabled , true}. +{project_plugins, [{coveralls, {git, "https://github.com/qzhuyan/coveralls-erl", {branch, "qzhuyan"}}}]}. +{cover_enabled, true}. {cover_excl_mods, [qt, qt_ssl, rev, user_default]}. -{cover_export_enabled , true}. -{coveralls_coverdata , "_build/test/cover/*.coverdata"}. % or a string with wildcards or a list of files -{coveralls_service_name , "github"}. +{cover_export_enabled, true}. +{coveralls_coverdata, "_build/test/cover/*.coverdata"}. % or a string with wildcards or a list of files +{coveralls_service_name, "github"}. {coveralls_parallel, true}. From 6c7c5ef045a2293e8a8fdd2a1676a5fc96f9dd03 Mon Sep 17 00:00:00 2001 From: "Zaiming (Stone) Shi" Date: Sat, 14 Oct 2023 19:52:12 +0200 Subject: [PATCH 2/2] ci: delete codeball --- .github/workflows/codeball.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/codeball.yml diff --git a/.github/workflows/codeball.yml b/.github/workflows/codeball.yml deleted file mode 100644 index 6f483df1..00000000 --- a/.github/workflows/codeball.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Codeball -on: [pull_request] - -jobs: - codeball_job: - if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name - runs-on: ubuntu-latest - name: Codeball - steps: - # Run Codeball on all new Pull Requests 🚀 - # For customizations and more documentation, see https://github.com/sturdy-dev/codeball-action - - name: Codeball - uses: sturdy-dev/codeball-action@v2 - with: - approvePullRequests: "true" - labelPullRequestsWhenApproved: "true" - labelPullRequestsWhenReviewNeeded: "false" - failJobsWhenReviewNeeded: "false"