From 54cb8ed53fa54926f4d6e85de8ed3fbf7250e8e8 Mon Sep 17 00:00:00 2001 From: Austin Ziegler Date: Mon, 15 Nov 2021 13:30:15 -0500 Subject: [PATCH] Switch primary branch to main --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 502ba9e..6cdf399 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,9 +9,9 @@ name: CI on: push: - branches: [ master ] + branches: [main] pull_request: - branches: [ master ] + branches: [main] jobs: test: @@ -56,9 +56,9 @@ jobs: ruby: truffleruby-head runs-on: ${{ matrix.os }}-latest continue-on-error: ${{ - endsWith(matrix.ruby, 'head') || - matrix.ruby == 'debug' || - (startsWith(matrix.ruby, 'jruby') && matrix.os == 'windows') + endsWith(matrix.ruby, 'head') || + matrix.ruby == 'debug' || + (startsWith(matrix.ruby, 'jruby') && matrix.os == 'windows') }} steps: - uses: actions/checkout@v2