summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHernan <hernan.grecco@gmail.com>2021-08-15 20:26:48 -0300
committerHernan <hernan.grecco@gmail.com>2021-08-15 20:29:36 -0300
commitbc164ef88719ee1a11e881bec474ae172d0d81c8 (patch)
tree6d8e4edfc6d29270968993108615cc708d485101
parentc854b9bd49dd506c4e34a53889b350f66c806a93 (diff)
downloadpint-bc164ef88719ee1a11e881bec474ae172d0d81c8.tar.gz
Summarize all test-linux into one dummy task
-rw-r--r--.github/workflows/ci.yml10
-rw-r--r--bors.toml2
2 files changed, 11 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 162c1df..a5cdaab 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -101,3 +101,13 @@ jobs:
run: |
pip install coveralls
coveralls --finish
+
+ # Dummy task to summarize all. See https://github.com/bors-ng/bors-ng/issues/1300
+ ci-success:
+ name: ci
+ if: ${{ success() }}
+ needs: test-linux
+ runs-on: ubuntu-latest
+ steps:
+ - name: CI succeeded
+ run: exit 0
diff --git a/bors.toml b/bors.toml
index 4240e1a..93a543e 100644
--- a/bors.toml
+++ b/bors.toml
@@ -1,5 +1,5 @@
status = [
- "test-linux",
+ "ci-success",
"docbuild",
"lint"
]