From bcdaaedb5f859c5542c17bdf12aa6c4679fa5fb6 Mon Sep 17 00:00:00 2001 From: Chuck Lantz Date: Fri, 9 Oct 2020 07:40:44 -0700 Subject: [PATCH] Tie Actions workflow to lock files so minor edits do not trigger it --- .devcontainer/cache/before-cache.sh | 2 +- .github/workflows/devcontainer-cache.yml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.devcontainer/cache/before-cache.sh b/.devcontainer/cache/before-cache.sh index 78da0a862ca..cfa7acc9d95 100755 --- a/.devcontainer/cache/before-cache.sh +++ b/.devcontainer/cache/before-cache.sh @@ -1,4 +1,4 @@ -#/bin/bash +#!/bin/bash # This file establishes a basline for the reposuitory before any steps in the "prepare.sh" # are run. Its just a find command that filters out a few things we don't need to watch. diff --git a/.github/workflows/devcontainer-cache.yml b/.github/workflows/devcontainer-cache.yml index c7dcd4a8006..121b440f17c 100644 --- a/.github/workflows/devcontainer-cache.yml +++ b/.github/workflows/devcontainer-cache.yml @@ -8,7 +8,6 @@ on: # Only updates to these files result in changes to installed packages, so skip otherwise paths: - - '**/package.json' - '**/package-lock.json' - '**/yarn.lock' -- GitLab