diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000..a2b473293 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,5 @@ +package.json @CJKay +package-lock.json @CJKay + +pyproject.toml @CJKay +poetry.lock @CJKay diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..b565bcb8b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,37 @@ +version: 2 +updates: + - target-branch: "main" + package-ecosystem: "npm" + directories: ["/"] + schedule: + interval: "daily" + + - target-branch: "lts-v2.10" + package-ecosystem: "npm" + directories: ["/"] + schedule: + interval: "daily" + + - target-branch: "lts-v2.8" + package-ecosystem: "npm" + directories: ["/"] + schedule: + interval: "daily" + + - target-branch: "main" + package-ecosystem: "pip" + directories: ["/", "/tools/cot_dt2c", "/tools/tlc"] + schedule: + interval: "daily" + + - target-branch: "lts-v2.10" + package-ecosystem: "pip" + directories: ["/"] + schedule: + interval: "daily" + + - target-branch: "lts-v2.8" + package-ecosystem: "pip" + directories: ["/"] + schedule: + interval: "daily"