From 78ab34341a4ae94391c594500c74f4d9d63e6904 Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Tue, 12 Jul 2022 19:35:32 -0300 Subject: ci: ignore github markdown templates in all workflows Ensure that the following paths are ignored everywhere: - '.github/ISSUE_TEMPLATE/*' - .github/pull_request_template.md To avoid running CI unnecessarily. Currently, they're only ignored on .github/workflows/build-extra.yml. --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.github/workflows/build.yml') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6612e256d..da2bea60f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,7 +4,9 @@ on: push: branches: [ master ] paths-ignore: + - '.github/ISSUE_TEMPLATE/*' - .git-blame-ignore-revs + - .github/pull_request_template.md - .gitignore - CONTRIBUTING.md - COPYING @@ -15,7 +17,9 @@ on: pull_request: branches: [ master ] paths-ignore: + - '.github/ISSUE_TEMPLATE/*' - .git-blame-ignore-revs + - .github/pull_request_template.md - .gitignore - CONTRIBUTING.md - COPYING -- cgit v1.2.3-54-g00ecf