From e03c483afae787beab2112dd524234868aedf6c6 Mon Sep 17 00:00:00 2001 From: Jamie Lokier Date: Tue, 27 Apr 2021 13:59:54 +0100 Subject: [PATCH] CI: Skip GitHub actions for `hive_integration` files Files underneath `hive_integration` are not used to build anything, so don't trigger CI when these files change. Most of them are manually copied into Hive `hive/clients/nimbus`. The rest are instructions and a standalone helper program not used by CI. Signed-off-by: Jamie Lokier --- .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 b5af82aad..bba5ee2ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,9 @@ name: nimbus-eth1 CI on: push: - paths-ignore: ['doc/**', 'docs/**', '**/*.md'] + paths-ignore: ['doc/**', 'docs/**', '**/*.md', 'hive_integration/**'] pull_request: - paths-ignore: ['doc/**', 'docs/**', '**/*.md'] + paths-ignore: ['doc/**', 'docs/**', '**/*.md', 'hive_integration/**'] jobs: build: