Skip to content

Commit

Permalink
Changed github variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Johanna Ahlskog committed Sep 14, 2023
1 parent eff389c commit a2e9f8b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cydigconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"date": "2023-09-07",
"boardsTag": "PT"
},
"githubDevOps": {
"github": {
"usingRepos": true,
"repos": {
"username": "firstname.lastname (usually)"
Expand Down
2 changes: 1 addition & 1 deletion src/helpfunctions/JsonService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export function validateConfig(config: unknown): void {
date: Joi.string().required(),
boardsTag: Joi.string().required(),
}).required(),
githubDevOps: Joi.object({
github: Joi.object({
usingRepos: Joi.boolean().required(),
repos: Joi.object({
username: Joi.string().required(),
Expand Down
2 changes: 1 addition & 1 deletion src/types/CyDigConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export type CyDigConfig = {
date: string;
boardsTag: string;
};
githubDevOps: {
github: {
usingRepos: boolean;
repos: {
username: string;
Expand Down

0 comments on commit a2e9f8b

Please sign in to comment.