From af0525f8a01f7c8f9b12ec8cf75c4799418d7778 Mon Sep 17 00:00:00 2001 From: Logan McDonald Date: Thu, 13 Oct 2022 12:53:00 -0400 Subject: [PATCH] exclude docs from checks (#163) specify path as src in github actions workflows --- .github/workflows/deploy.yaml | 3 +++ .github/workflows/security-check.yaml | 2 ++ .github/workflows/test.yaml | 6 ++++-- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index a6d49e684..3b2e06fc8 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -7,6 +7,9 @@ name: Build and deploy on: push: + paths-ignore: + - 'docs/**' + branches: - main diff --git a/.github/workflows/security-check.yaml b/.github/workflows/security-check.yaml index 06c717e0a..0f40b69c0 100644 --- a/.github/workflows/security-check.yaml +++ b/.github/workflows/security-check.yaml @@ -2,6 +2,8 @@ name: Security Checks on: push: + paths-ignore: + - 'docs/**' branches: - main pull_request: diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b6ca7d804..02bd94e1f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -3,11 +3,13 @@ name: Testing on: push: + paths-ignore: + - 'docs/**' branches: - - main + - main pull_request: branches: - - main + - main jobs: python-linting: