From 1adb35c9a04246c6092f6f310dd24893cb87cb30 Mon Sep 17 00:00:00 2001 From: giohappy Date: Wed, 14 Jul 2021 13:04:40 +0200 Subject: [PATCH] fix path checks for workflow runs --- .github/workflows/build.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3baaa40d34..c71b925dcf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ on: # Triggers the workflow on push events but only for the master branch push: branches: [ master ] - paths: "./geonode_mapstore_client/client/**" + paths: "geonode_mapstore_client/client/**" # Allows you to run this workflow manually from the Actions tab workflow_dispatch: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ea907f2ccf..2f933f9463 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ on: # Triggers the workflow pull request events but only for the master branch pull_request: branches: [ master ] - paths: "./geonode_mapstore_client/client/**" + paths: "geonode_mapstore_client/client/**" # Allows you to run this workflow manually from the Actions tab workflow_dispatch: