From 58fc4185632dc932c44a47db20a81a83db1f8a20 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Wed, 10 Jun 2020 13:18:22 +0100 Subject: [PATCH] Update to add clarity to `on:` section --- examples/github-deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/github-deploy.yml b/examples/github-deploy.yml index b3d3fc04..746c5847 100644 --- a/examples/github-deploy.yml +++ b/examples/github-deploy.yml @@ -1,8 +1,11 @@ name: Build and upload to PyPI +# Build on every branch push, tag push, and pull request change: on: [push, pull_request] -# alternatively, to publish when a (published) GitHub Release is created, use the following: +# Alternatively, to publish when a (published) GitHub Release is created, use the following: # on: +# push: +# pull_request: # release: # types: # - published