diff --git a/.github/workflows/alerts-ee.yaml b/.github/workflows/alerts-ee.yaml index 1033fb19f..10482a7cb 100644 --- a/.github/workflows/alerts-ee.yaml +++ b/.github/workflows/alerts-ee.yaml @@ -10,21 +10,20 @@ on: branches: - api-v1.10.0 paths: - - ee/api/** - - api/** - paths-ignore: - - api/.gitignore - - api/routers - - api/app.py - - api/*-dev.sh - - api/requirements.txt - - api/requirements-crons.txt - - ee/api/.gitignore - - ee/api/routers - - ee/api/app.py - - ee/api/*-dev.sh - - ee/api/requirements.txt - - ee/api/requirements-crons.txt + - "ee/api/**" + - "api/**" + - "!api/.gitignore" + - "!api/routers" + - "!api/app.py" + - "!api/*-dev.sh" + - "!api/requirements.txt" + - "!api/requirements-crons.txt" + - "!ee/api/.gitignore" + - "!ee/api/routers" + - "!ee/api/app.py" + - "!ee/api/*-dev.sh" + - "!ee/api/requirements.txt" + - "!ee/api/requirements-crons.txt" name: Build and Deploy Alerts EE diff --git a/.github/workflows/alerts.yaml b/.github/workflows/alerts.yaml index f5e2cbe76..539cc5e65 100644 --- a/.github/workflows/alerts.yaml +++ b/.github/workflows/alerts.yaml @@ -10,14 +10,13 @@ on: branches: - api-v1.10.0 paths: - - api/** - paths-ignore: - - api/.gitignore - - api/routers - - api/app.py - - api/*-dev.sh - - api/requirements.txt - - api/requirements-crons.txt + - "api/**" + - "!api/.gitignore" + - "!api/routers" + - "!api/app.py" + - "!api/*-dev.sh" + - "!api/requirements.txt" + - "!api/requirements-crons.txt" name: Build and Deploy Alerts diff --git a/.github/workflows/api-ee.yaml b/.github/workflows/api-ee.yaml index d62ff77ed..b2a31f276 100644 --- a/.github/workflows/api-ee.yaml +++ b/.github/workflows/api-ee.yaml @@ -10,18 +10,17 @@ on: branches: - api-v1.10.0 paths: - - ee/api/** - - api/** - paths-ignore: - - api/.gitignore - - api/app_alerts.py - - api/*-dev.sh - - api/requirements-*.txt - - ee/api/.gitignore - - ee/api/app_alerts.py - - ee/api/app_crons.py - - ee/api/*-dev.sh - - ee/api/requirements-*.txt + - "ee/api/**" + - "api/**" + - "!api/.gitignore" + - "!api/app_alerts.py" + - "!api/*-dev.sh" + - "!api/requirements-*.txt" + - "!ee/api/.gitignore" + - "!ee/api/app_alerts.py" + - "!ee/api/app_crons.py" + - "!ee/api/*-dev.sh" + - "!ee/api/requirements-*.txt" name: Build and Deploy Chalice EE diff --git a/.github/workflows/api.yaml b/.github/workflows/api.yaml index ffe7efc4c..26d59ff87 100644 --- a/.github/workflows/api.yaml +++ b/.github/workflows/api.yaml @@ -10,12 +10,11 @@ on: branches: - api-v1.10.0 paths: - - api/** - paths-ignore: - - api/.gitignore - - api/app_alerts.py - - api/*-dev.sh - - api/requirements-*.txt + - "api/**" + - "!api/.gitignore" + - "!api/app_alerts.py" + - "!api/*-dev.sh" + - "!api/requirements-*.txt" name: Build and Deploy Chalice diff --git a/.github/workflows/crons-ee.yaml b/.github/workflows/crons-ee.yaml index 9358ebfa4..762dae33e 100644 --- a/.github/workflows/crons-ee.yaml +++ b/.github/workflows/crons-ee.yaml @@ -10,21 +10,20 @@ on: branches: - api-v1.10.0 paths: - - ee/api/** - - api/** - paths-ignore: - - api/.gitignore - - api/app.py - - api/app_alerts.py - - api/*-dev.sh - - api/requirements.txt - - api/requirements-alerts.txt - - ee/api/.gitignore - - ee/api/app.py - - ee/api/app_alerts.py - - ee/api/*-dev.sh - - ee/api/requirements.txt - - ee/api/requirements-crons.txt + - "ee/api/**" + - "api/**" + - "!api/.gitignore" + - "!api/app.py" + - "!api/app_alerts.py" + - "!api/*-dev.sh" + - "!api/requirements.txt" + - "!api/requirements-alerts.txt" + - "!ee/api/.gitignore" + - "!ee/api/app.py" + - "!ee/api/app_alerts.py" + - "!ee/api/*-dev.sh" + - "!ee/api/requirements.txt" + - "!ee/api/requirements-crons.txt" name: Build and Deploy Crons EE diff --git a/.github/workflows/peers-ee.yaml b/.github/workflows/peers-ee.yaml index 1b2c03bd9..5db7436da 100644 --- a/.github/workflows/peers-ee.yaml +++ b/.github/workflows/peers-ee.yaml @@ -5,11 +5,10 @@ on: branches: - dev paths: - - ee/peers/** - - peers/** - paths-ignore: - - peers/.gitignore - - peers/*-dev.sh + - "ee/peers/**" + - "peers/**" + - "!peers/.gitignore" + - "!peers/*-dev.sh" name: Build and Deploy Peers diff --git a/.github/workflows/peers.yaml b/.github/workflows/peers.yaml index 6de50b023..7b2a715d8 100644 --- a/.github/workflows/peers.yaml +++ b/.github/workflows/peers.yaml @@ -5,10 +5,9 @@ on: branches: - dev paths: - - peers/** - paths-ignore: - - peers/.gitignore - - peers/*-dev.sh + - "peers/**" + - "!peers/.gitignore" + - "!peers/*-dev.sh" name: Build and Deploy Peers diff --git a/.github/workflows/sourcemaps-reader.yaml b/.github/workflows/sourcemaps-reader.yaml index f7e27aaa2..095a70784 100644 --- a/.github/workflows/sourcemaps-reader.yaml +++ b/.github/workflows/sourcemaps-reader.yaml @@ -5,10 +5,9 @@ on: branches: - dev paths: - - sourcemap-reader/** - paths-ignore: - - sourcemap-reader/.gitignore - - sourcemap-reader/*-dev.sh + - "sourcemap-reader/**" + - "!sourcemap-reader/.gitignore" + - "!sourcemap-reader/*-dev.sh" name: Build and Deploy sourcemap-reader diff --git a/.github/workflows/utilities-ee.yaml b/.github/workflows/utilities-ee.yaml index 76682a975..a589bfb81 100644 --- a/.github/workflows/utilities-ee.yaml +++ b/.github/workflows/utilities-ee.yaml @@ -5,11 +5,10 @@ on: branches: - dev paths: - - ee/utilities/** - - utilities/*/** - paths-ignore: - - utilities/.gitignore - - utilities/*-dev.sh + - "ee/utilities/**" + - "utilities/*/**" + - "!utilities/.gitignore" + - "!utilities/*-dev.sh" name: Build and Deploy Utilities EE diff --git a/.github/workflows/utilities.yaml b/.github/workflows/utilities.yaml index 331b33b3a..b33d86c21 100644 --- a/.github/workflows/utilities.yaml +++ b/.github/workflows/utilities.yaml @@ -5,10 +5,9 @@ on: branches: - dev paths: - - utilities/** - paths-ignore: - - utilities/.gitignore - - utilities/*-dev.sh + - "utilities/**" + - "!utilities/.gitignore" + - "!utilities/*-dev.sh" name: Build and Deploy Utilities