summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-06-02 12:34:52 -0400
committerNicoleYarroch <nicole@livio.io>2020-06-02 12:34:52 -0400
commitb9031f67970ce8115a8879074e10120846f889dd (patch)
tree55f3c236687048722bf2bd9ef95e282910d6cc91 /.github
parentde2bbb12504558fc4ed826de78d953ccc62bb29f (diff)
downloadsdl_ios-b9031f67970ce8115a8879074e10120846f889dd.tar.gz
Attempt to fix workflow being triggered by a pull request and a push
Signed-off-by: NicoleYarroch <nicole@livio.io>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 2dc856842..7653650c2 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -1,7 +1,15 @@
name: SmartDeviceLink Unit Tests
# This workflow is triggered on a push or pull request.
-on: [push, pull_request]
+on:
+ push:
+ branches:
+ - '*'
+ tags-ignore: # Don't run workflow when a tag is created
+ - v*
+ pull_request:
+ branches:
+ - '*'
jobs:
build: