Skip to content

Commit

Permalink
Avoid updating branch protection (#362)
Browse files Browse the repository at this point in the history
  • Loading branch information
mijicd authored and neko-kai committed Mar 14, 2023
1 parent 6c223e8 commit 1cf63c9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1cf63c9

Please sign in to comment.