From 2b12b904a7600b06a84e5c18a4dee99579757a26 Mon Sep 17 00:00:00 2001 From: Dylan Hardison Date: Sun, 23 Aug 2020 15:47:39 -0400 Subject: [PATCH] only run tests against the primary branch --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0e0c0e5db..d7c1f5879 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,9 +6,9 @@ name: Release Tests # events but only for the master branch on: push: - branches: [ master, devel ] + branches: [ master ] pull_request: - branches: [ master, devel ] + branches: [ master ] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: -- 2.47.2