From 4192b7108e5a31a115f3bda9e53e8d6dbb52c835 Mon Sep 17 00:00:00 2001 From: Jef LeCompte Date: Fri, 9 Oct 2020 16:51:57 -0500 Subject: [PATCH] chore(pipeline): reduce false-positive during ci/cd Signed-off-by: Jef LeCompte --- .github/workflows/cd.yaml | 4 ++-- .github/workflows/ci.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index 048cddb..3fc38f2 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -3,8 +3,8 @@ on: push: branches: - main - paths-ignore: - - '**.md' + paths: + - '!**.md' jobs: cd: runs-on: ubuntu-latest diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0d85866..7280c2c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,8 +3,8 @@ on: pull_request: branches: - main - paths-ignore: - - '**.md' + paths: + - '!**.md' jobs: build-lint: runs-on: ubuntu-latest