From 93fea25c32ebb95437d4b28ae59cbd41f5e99b5d Mon Sep 17 00:00:00 2001 From: benthecarman Date: Thu, 21 Jan 2021 15:57:14 -0600 Subject: [PATCH] Fix native CI workflow for different branches (#2521) * Fix native CI workflow for different branches * Skip for documentation PRs --- .github/workflows/native.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/native.yml b/.github/workflows/native.yml index 673aa33aee..0f44661092 100644 --- a/.github/workflows/native.yml +++ b/.github/workflows/native.yml @@ -3,13 +3,14 @@ name: Native Image bitcoin-s-cli on: push: - branches: - - master + branches: [master, main, adaptor-dlc] + tags: ["*"] pull_request: release: types: [published] jobs: unix: + if: "! contains(github.event.pull_request.labels.*.name, 'documentation')" runs-on: ${{ matrix.os }} strategy: fail-fast: false