From d92c972816226b7ea9a19c3efbd4b7e8ac96e9d5 Mon Sep 17 00:00:00 2001 From: Igor Aleksanov Date: Wed, 28 Aug 2024 15:57:00 +0400 Subject: [PATCH] ci: Only run main CI if code changed (#16) Allows faster interactions with repo configuration. --- .github/workflows/ci.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f3fed1c..3ff190a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,6 +1,10 @@ name: "Rust CI" on: pull_request: + paths: + - "crates/**" + - "Cargo.toml" + - ".github/workflows/ci.yaml" concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}