From 63d27a0209f2b4fa08a3fac752a20cfae56d54b9 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sat, 10 Sep 2022 16:54:47 -0700 Subject: [PATCH] Do not run CI on Emacs master (#125) * Do not run CI on Emacs master * Don't duplicate checks --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index af10055..736a2cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,11 +1,11 @@ name: CI -on: [push, pull_request] +on: [pull_request] jobs: ci: runs-on: ubuntu-latest strategy: matrix: - emacs_version: [25, 26, 27, "master"] + emacs_version: [25, 26, 27, 28] steps: - name: Checkout uses: actions/checkout@v2