From 7034fcb98e97bcad717634a3aba962321d038ce7 Mon Sep 17 00:00:00 2001 From: Stuart Chinery <163900+schinery@users.noreply.github.com> Date: Mon, 28 Aug 2023 08:51:18 +0100 Subject: [PATCH] Configure GH actions so they don't double run on PRs --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9217bf..b17ac26 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,9 @@ name: CI -on: [push, pull_request] +on: + push: + paths-ignore: + - 'README.md' jobs: lint: @@ -10,7 +13,6 @@ jobs: - uses: ruby/setup-ruby@v1 with: bundler-cache: true - ruby-version: "3.2.0" - run: bundle exec rubocop test: strategy: