From e6fe5d491f3fb1c99a8abc890a0c080235abbd02 Mon Sep 17 00:00:00 2001 From: Kate Harwood Date: Mon, 8 Mar 2021 14:39:47 -0500 Subject: [PATCH] only trigger workflow on push to dev --- .github/workflows/main.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ab292a4..be56895 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,11 +4,10 @@ name: CI # Controls when the action will run. on: - # Triggers the workflow on push or pull request events but only for the dev branch + # Triggers the workflow on push to the dev branch push: branches: [ dev ] pull_request: - branches: [ dev ] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -35,4 +34,4 @@ jobs: # Runs a single command using the runners shell - name: Build and deploy dashboard docker image run: | - make deploy_dashboard \ No newline at end of file + make deploy_dashboard