From 7e456cc19a22ae9f2d4129127d692e9e16ebee8f Mon Sep 17 00:00:00 2001 From: "Dr. Charlie Vanaret" Date: Tue, 29 Oct 2024 20:44:28 +0100 Subject: [PATCH] CI: do not trigger Julia tests if basic text files (markdown, LICENSE, etc) are modified --- .github/workflows/julia-tests-ubuntu.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/julia-tests-ubuntu.yml b/.github/workflows/julia-tests-ubuntu.yml index 86a89f19..91e916d1 100644 --- a/.github/workflows/julia-tests-ubuntu.yml +++ b/.github/workflows/julia-tests-ubuntu.yml @@ -2,6 +2,12 @@ name: CI on: push: branches: [main] + paths-ignore: + - '*.md' + - 'LICENSE' + - '*.cff' + - '*.options' + - 'uno_ampl-completion.bash' pull_request: types: [opened, synchronize, ready_for_review, reopened] # needed to allow julia-actions/cache to delete old caches that it has created