From e9e09c65fd19b6f8df7bfa0e61b3e17c158fe464 Mon Sep 17 00:00:00 2001 From: Mahmoud Mazouz Date: Wed, 20 Mar 2024 17:31:01 +0100 Subject: [PATCH] feat: Add `ci.config.json` configuration file --- ci.config.json | 13 +++++++++++++ src/config.ts | 14 ++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 ci.config.json create mode 100644 src/config.ts diff --git a/ci.config.json b/ci.config.json new file mode 100644 index 0000000..9fb3fc6 --- /dev/null +++ b/ci.config.json @@ -0,0 +1,13 @@ +{ + "git": { + "name": "eclipse-zenoh-bot", + "email": "eclipse-zenoh-bot@users.noreply.github.com" + }, + "lock": { + "cratesio": { + "cargo-deb": "2.1.0", + "estuary": "0.1.1", + "cross": "0.2.5" + } + } +} diff --git a/src/config.ts b/src/config.ts new file mode 100644 index 0000000..9f72e5e --- /dev/null +++ b/src/config.ts @@ -0,0 +1,14 @@ +type Config = { + git: { + email: string; + name: string; + } + lock: { + cratesio: { + [key: string]: string; + } + } +}; + +export const config: Config = require("ci.config.json"); +