From c315bd903d0a7cf2b4c7dd1a47751663ea9cb80d Mon Sep 17 00:00:00 2001 From: per1234 Date: Fri, 16 Jul 2021 02:45:50 -0700 Subject: [PATCH] Add data file to "Check Registry Data File" workflow's path filter GitHub Actions workflows can be configured to run only when files under specific paths are modified. This makes the CI system more efficient by avoiding pointless workflow runs. The path filter must be carefully configured to cover all relevant files. In this case, the file that is the whole point of the workflow's existence was missing from the list! --- .github/workflows/check-registry.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/check-registry.yml b/.github/workflows/check-registry.yml index 445a8ff1..2b19a2ab 100644 --- a/.github/workflows/check-registry.yml +++ b/.github/workflows/check-registry.yml @@ -13,6 +13,7 @@ on: - "**.go" - "**/go.mod" - "**/go.sum" + - "registry.txt" pull_request: paths: - ".github/workflows/check-registry.ya?ml" @@ -20,6 +21,7 @@ on: - "**.go" - "**/go.mod" - "**/go.sum" + - "registry.txt" workflow_dispatch: repository_dispatch: