From 0eabb5da1759439fd01e54dc986900448f483330 Mon Sep 17 00:00:00 2001 From: Caleb Mabry Date: Wed, 1 Feb 2023 15:53:37 -0500 Subject: Only deploy on pull requests and pushes to master --- .github/workflows/deploy.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to '.github/workflows/deploy.yml') diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b0d5ea4..50bde45 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,6 +1,12 @@ name: Deploy CI -on: [push] +on: + push: + branches: + - master + pull_request: + branches: + - master jobs: build: -- cgit