Skip to content

Commit a1f06d8

Browse files
authored
Add missing projects to Dependabot config and Makefile. (#1372)
1 parent e082c48 commit a1f06d8

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,16 @@ updates:
88
- package-ecosystem: "docker"
99
directories:
1010
- "/lambdas/ack_backend"
11+
- "/lambdas/backend"
1112
- "/lambdas/batch_processor_filter"
1213
- "/lambdas/delta_backend"
1314
- "/lambdas/filenameprocessor"
15+
- "/lambdas/id_sync"
1416
- "/lambdas/mesh_processor"
17+
- "/lambdas/mns_publisher"
1518
- "/lambdas/recordforwarder"
1619
- "/lambdas/recordprocessor"
20+
- "/lambdas/redis_sync"
1721
- "/sandbox"
1822
schedule:
1923
interval: "daily"
@@ -57,11 +61,14 @@ updates:
5761
- "/lambdas/id_sync"
5862
- "/lambdas/mesh_processor"
5963
- "/lambdas/mns_subscription"
64+
- "/lambdas/mns_publisher"
6065
- "/lambdas/recordforwarder"
6166
- "/lambdas/recordprocessor"
6267
- "/lambdas/redis_sync"
6368
- "/lambdas/shared"
6469
- "/tests/e2e_automation"
70+
- "/tests/perf_tests"
71+
- "/quality_checks"
6572
schedule:
6673
interval: "daily"
6774
open-pull-requests-limit: 1
@@ -75,6 +82,7 @@ updates:
7582
directories:
7683
- "/infrastructure/account"
7784
- "/infrastructure/instance"
85+
- "/infrastructure/mesh"
7886
- "/infrastructure/terraform_aws_backup/**"
7987
schedule:
8088
interval: "daily"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SHELL=/usr/bin/env bash -euo pipefail
22

3-
PYTHON_PROJECT_DIRS_WITH_UNIT_TESTS = lambdas/backend lambdas/ack_backend lambdas/batch_processor_filter lambdas/delta_backend lambdas/filenameprocessor lambdas/id_sync lambdas/mesh_processor lambdas/mns_subscription lambdas/recordforwarder lambdas/recordprocessor lambdas/redis_sync lambdas/shared
3+
PYTHON_PROJECT_DIRS_WITH_UNIT_TESTS = lambdas/backend lambdas/ack_backend lambdas/batch_processor_filter lambdas/delta_backend lambdas/filenameprocessor lambdas/id_sync lambdas/mesh_processor lambdas/mns_subscription lambdas/mns_publisher lambdas/recordforwarder lambdas/recordprocessor lambdas/redis_sync lambdas/shared
44
PYTHON_PROJECT_DIRS = tests/e2e_automation tests/perf_tests quality_checks $(PYTHON_PROJECT_DIRS_WITH_UNIT_TESTS)
55

66
.PHONY: install lint format format-check clean publish oas build-proxy release initialise-all-python-venvs update-all-python-dependencies run-all-python-unit-tests build-all-docker-images

0 commit comments

Comments
 (0)