From 3e9750fbbf5d296a567dd280c6445ea380a671d4 Mon Sep 17 00:00:00 2001 From: Chris Fulljames Date: Sun, 26 Jan 2025 18:05:00 -0500 Subject: [PATCH] Update workflow to run only for master --- .github/workflows/test-and-deploy.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 57a49f8..2b23fb6 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -1,5 +1,10 @@ name: Test and Deploy -on: [push, workflow_dispatch] +on: + push: + branches: + - master + workflow_dispatch: {} + jobs: run-offline-tests: runs-on: ubuntu-latest -- 2.39.5