From 4ff821c778170d86de82a2c27f7ddbd8e4aad0b5 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Sun, 19 Jan 2020 14:39:10 +0100 Subject: [PATCH] Try to trigger CI on push to branches but not to tags * Running CI on tag is redundant with the branch push. * Do not build on pushes to v1 as CI already ran on the master commit before. --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b6b95b0..5b2d24e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,10 @@ name: Test this action on: push: + branches-ignore: + - v1 + tags-ignore: + - '*' paths-ignore: - README.md jobs: