Skip to content

Commit

Permalink
feat: Add ci.config.json configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzypixelz committed Mar 21, 2024
1 parent 103e88e commit e9e09c6
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
13 changes: 13 additions & 0 deletions ci.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"git": {
"name": "eclipse-zenoh-bot",
"email": "[email protected]"
},
"lock": {
"cratesio": {
"cargo-deb": "2.1.0",
"estuary": "0.1.1",
"cross": "0.2.5"
}
}
}
14 changes: 14 additions & 0 deletions src/config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
type Config = {
git: {
email: string;
name: string;
}
lock: {
cratesio: {
[key: string]: string;
}
}
};

export const config: Config = require("ci.config.json");

0 comments on commit e9e09c6

Please sign in to comment.