Skip to content

Commit

Permalink
fix vars and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mordamax committed Aug 12, 2023
1 parent 4de4563 commit e33ccf3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env.example.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,4 @@ process.env.MIN_LOG_LEVEL ??= "debug"

process.env.BOT_PR_COMMENT_MENTION ??= "localbot"

process.env.PROCESSBOT_SUPPORTED_REPOS: "substrate,polkadot,cumulus"
process.env.PROCESSBOT_SUPPORTED_REPOS ??= "substrate,polkadot,cumulus"
2 changes: 1 addition & 1 deletion .env.unit-tests.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ process.env.ALLOWED_ORGANIZATIONS ??= "123,456"
process.env.MASTER_TOKEN ??= "placeholder"
process.env.TASK_DB_VERSION ??= "123"
process.env.CMD_BOT_URL ??= "http://localhost:3000/"
process.env.PROCESSBOT_SUPPORTED_REPOS: "substrate,polkadot,cumulus"
process.env.PROCESSBOT_SUPPORTED_REPOS ??= "substrate,polkadot,cumulus"
2 changes: 1 addition & 1 deletion src/test/setup/bot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,6 @@ function getBotEnv(

BOT_PR_COMMENT_MENTION: "testbot",

PROCESSBOT_SUPPORTED_REPOS: "substrate,polkadot,cumulus",
PROCESSBOT_SUPPORTED_REPOS: "substrate,polkadot,cumulus,command-bot-test",
};
}

0 comments on commit e33ccf3

Please sign in to comment.