summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-06-03 08:37:09 -0400
committerNicoleYarroch <nicole@livio.io>2020-06-03 08:37:09 -0400
commit5adf55e0429b4cd7324786f7ce377d0c91c88bee (patch)
treed0f29f4311ff1fb66be262a5cfa4c1172eb3479b /.github
parentc65520602c8d185f76360e40857613a1670bf410 (diff)
downloadsdl_ios-5adf55e0429b4cd7324786f7ce377d0c91c88bee.tar.gz
Added a better comments
Signed-off-by: NicoleYarroch <nicole@livio.io>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 4f372d815..1744677d8 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -2,10 +2,10 @@ 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
+ # Runs the workflow when someone pushes to a repository branch, which triggers the push event.
push:
- # Runs the workflow only when someone opens or reopens a pull request
+ # Runs the workflow only when someone opens or reopens a pull request (there are a bunch of activity types that can trigger a workflow that we don't want - like labeling, assigning, and locking the PR). This prevents two workflows from being triggered when a push is made to a pull request branch because the pull request activity type of "synchronize" also triggers another, separate, workflow.
pull_request:
types: [opened, reopened]