From e9b7d0c438de9d6707dab71fd1c5f91a5055989a Mon Sep 17 00:00:00 2001 From: cheginit Date: Fri, 10 Sep 2021 14:55:43 -0500 Subject: [PATCH] ENH: Ignore tagged commits in the CI --- .github/workflows/test.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 89e794a..107fc4b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,15 +1,14 @@ on: push: - branch: - - "*" + branches: + - "**" tags-ignore: - - v* + - "**" pull_request: - branch: - - "*" + branches: + - "**" tags-ignore: - - v* - + - "**" name: CI