From 728392e51e942703118803775636a756c3a5cdfc Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Fri, 18 Oct 2019 17:14:36 +0100 Subject: [PATCH] Automatically deploy theme on master only - switch from all branches to master only --- .github/workflows/deploy-theme.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-theme.yml b/.github/workflows/deploy-theme.yml index 718ac2f..97a9e2c 100644 --- a/.github/workflows/deploy-theme.yml +++ b/.github/workflows/deploy-theme.yml @@ -1,5 +1,8 @@ name: Deploy Theme -on: [push] +on: + push: + branches: + - master jobs: deploy: runs-on: ubuntu-18.04