Skip to content

Commit

Permalink
Update target repo based on STAND env
Browse files Browse the repository at this point in the history
  • Loading branch information
jmetrikat committed May 29, 2024
1 parent 00504b0 commit 41cc682
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/projectManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import LinearSync from "./linearSynchronizer";

export = (app: Probot) => {
// PROJECT MANAGEMENT
const targetRepo = "bot-test";
// change target repo based on STAND ENV
const targetRepo = process.env.STAND == 'prod' ? "contributors" : "bot-test";
const org = "anyproto";
const projectNumber = 4;

Expand Down

0 comments on commit 41cc682

Please sign in to comment.