From b072bb4166dd51df10e72ab526dc38e079858298 Mon Sep 17 00:00:00 2001 From: Jimmy Zelinskie Date: Wed, 29 Apr 2020 13:13:40 -0400 Subject: [PATCH] .github/workflows: only run dependabot CI on PR --- .github/workflows/{go.yaml => CI.yaml} | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) rename .github/workflows/{go.yaml => CI.yaml} (93%) diff --git a/.github/workflows/go.yaml b/.github/workflows/CI.yaml similarity index 93% rename from .github/workflows/go.yaml rename to .github/workflows/CI.yaml index 0794946..70b902d 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/CI.yaml @@ -1,5 +1,14 @@ name: CI -on: [push, pull_request] +on: + # See the documentation for more intricate event dispatch here: + # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#on + push: + branches: + - "!dependabot/*" + - "*" + pull_request: + branches: + - "*" jobs: build: name: Build & Lint