From 68891402f915eb5c9c3342bf712f107dab3581eb Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sun, 20 Dec 2020 13:40:22 +0100 Subject: [PATCH] CI workflows: fix branch names --- .github/workflows/quicktest.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/quicktest.yml b/.github/workflows/quicktest.yml index 97e2f1f..b3ed032 100644 --- a/.github/workflows/quicktest.yml +++ b/.github/workflows/quicktest.yml @@ -1,10 +1,10 @@ name: Quicktest on: - # Run on pushes, including merges, to all branches except `master`. + # Run on pushes, including merges, to all branches except `stable`. push: branches-ignore: - - master + - stable paths-ignore: - '**.md' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4b4e0bf..faa237d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,10 +1,10 @@ name: Test on: - # Run on pushes to `master` and on all pull requests. + # Run on pushes to `stable` and on all pull requests. push: branches: - - master + - stable pull_request: paths-ignore: - '**.md'