From 4f3e442bc7d7f9ad6eee97f89be9c015f31f91e2 Mon Sep 17 00:00:00 2001 From: Josh Mock Date: Tue, 31 Oct 2023 11:46:36 -0500 Subject: [PATCH] Github actions don't support YAML anchors --- .github/workflows/nodejs.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 6443f0ee8..4fe2b1236 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -3,7 +3,7 @@ name: Node CI on: push: - paths-ignore: &ignore + paths-ignore: - '**/*.md' - '**/*.asciidoc' - '**/*.txt' @@ -13,7 +13,15 @@ on: - 'scripts/**' - 'catalog-info.yaml' pull_request: - paths-ignore: *ignore + paths-ignore: + - '**/*.md' + - '**/*.asciidoc' + - '**/*.txt' + - 'docs/**' + - '.ci/**' + - '.buildkite/**' + - 'scripts/**' + - 'catalog-info.yaml' jobs: test: