Skip to content

Commit

Permalink
add env override for project ids
Browse files Browse the repository at this point in the history
  • Loading branch information
hubertdeng123 committed May 30, 2023
1 parent fdb25ba commit d77cb7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ export const MAX_ROUTE_DAYS = 1;
* Issues Someone Else Cares About Project
*/

export const ISSUES_PROJECT_NODE_ID = "PVT_kwDOABVQ184AOGW8";
export const PRODUCT_AREA_FIELD_ID = "PVTSSF_lADOABVQ184AOGW8zgJEBno";
export const ISSUES_PROJECT_NODE_ID = process.env.ISSUES_PROJECT_NODE_ID || "PVT_kwDOABVQ184AOGW8";
export const PRODUCT_AREA_FIELD_ID = process.env.PRODUCT_AREA_FIELD_ID || "PVTSSF_lADOABVQ184AOGW8zgJEBno";

/**
* Personal Access Token for the Sentry bot used to do things that aren't possible with the App account, e.g. querying org membership
Expand Down

0 comments on commit d77cb7d

Please sign in to comment.