summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-06-03 08:20:33 -0400
committerNicoleYarroch <nicole@livio.io>2020-06-03 08:20:33 -0400
commitc65520602c8d185f76360e40857613a1670bf410 (patch)
tree1a296f6c2c1c98818f63cc436ffa33b0922df674
parent76cd39d63d1009134939779d07cac1df305014e2 (diff)
downloadsdl_ios-c65520602c8d185f76360e40857613a1670bf410.tar.gz
Fixing when workflow is triggered
Signed-off-by: NicoleYarroch <nicole@livio.io>
-rw-r--r--.github/workflows/test.yml10
1 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 76a9f0866..4f372d815 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -2,14 +2,12 @@ name: SmartDeviceLink Tests
# This workflow is triggered on a push or pull request.
on:
+ # Runs the workflow when someone pushes to a repository branch, which triggers the push event
push:
- branches:
- - '*'
- tags-ignore:
- - v* # Don't run workflow when a tag is created
+
+ # Runs the workflow only when someone opens or reopens a pull request
pull_request:
- branches:
- - '*'
+ types: [opened, reopened]
env:
PROJECT: 'SmartDeviceLink-iOS.xcodeproj'