From 1cf63c95ecabd4f3ee9c9f6768baf741d16997bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dejan=20Miji=C4=87?= Date: Wed, 19 May 2021 16:22:54 +0200 Subject: [PATCH] Avoid updating branch protection (#362) --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 985d77c6..6c7f3e05 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,9 +51,16 @@ jobs: if: ${{ startsWith(matrix.scala, '3.') && matrix.platform == 'JVM' }} run: sbt ++${{ matrix.scala }} test${{ matrix.platform }} - publish: + ci: runs-on: ubuntu-20.04 needs: [lint, test] + steps: + - name: Aggregate outcomes + run: echo "build succeeded" + + publish: + runs-on: ubuntu-20.04 + needs: [ci] if: github.event_name != 'pull_request' steps: - name: Checkout current branch