From 83438fe2a59f46e6641efe88fe1a825ce09ee0c3 Mon Sep 17 00:00:00 2001 From: ptaylor Date: Tue, 16 Aug 2022 13:31:23 -0700 Subject: [PATCH] fix files regex's --- .github/workflows/main.pr.yml | 2 ++ .github/workflows/merge.pr.yml | 10 ++++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.pr.yml b/.github/workflows/main.pr.yml index 7541e7ab1..34a2dd4c2 100644 --- a/.github/workflows/main.pr.yml +++ b/.github/workflows/main.pr.yml @@ -79,6 +79,8 @@ jobs: path: node base_sha: ${{ steps.last_main_commit.outputs.commit_hash }} files: | + lerna\.json + package\.json dev/dockerfiles/devel/main\.Dockerfile \.github/workflows/main\.pr\.yml \.github/workflows/merge\.pr\.yml diff --git a/.github/workflows/merge.pr.yml b/.github/workflows/merge.pr.yml index d88042276..8f15e2b06 100644 --- a/.github/workflows/merge.pr.yml +++ b/.github/workflows/merge.pr.yml @@ -21,7 +21,10 @@ jobs: file: dev/dockerfiles/devel/main.Dockerfile manual-build: ${{ github.event_name == 'workflow_dispatch' }} files-to-diff: | - (\.npmrc|modules|yarn\.lock|package\.json) + \.npmrc + modules + yarn\.lock + package\.json build-args: | "UCX_VERSION=1.12.1" @@ -37,8 +40,11 @@ jobs: file: dev/dockerfiles/devel/package.Dockerfile manual-build: ${{ github.event_name == 'workflow_dispatch' }} files-to-diff: | + \.npmrc + modules + yarn\.lock + package\.json dev/dockerfiles/devel/main\.Dockerfile - (\.npmrc|modules|yarn\.lock|package\.json) build-args: | "CUDAARCHS=ALL" "SCCACHE_IDLE_TIMEOUT=32768"