Skip to content

Commit

Permalink
Pick off a couple app.org locations
Browse files Browse the repository at this point in the history
  • Loading branch information
chadwhitacre committed Jul 21, 2023
1 parent 18176b4 commit 61d3556
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/webhooks/pubsub/slackNotifications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ export const notifyProductOwnersForUntriagedIssues = async (
repo: string
): Promise<IssueSLOInfo[]> => {
const untriagedIssues = await octokit.paginate(octokit.issues.listForRepo, {
owner: GETSENTRY_ORG,
owner: app.org,
repo,
state: 'open',
labels: WAITING_FOR_PRODUCT_OWNER_LABEL,
Expand Down
2 changes: 1 addition & 1 deletion src/webhooks/pubsub/stalebot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const triggerStaleBot = async (
// Get all open issues and pull requests that are Waiting for Community
REPOS_TO_TRACK_FOR_STALEBOT.forEach(async (repo: string) => {
const issues = await octokit.paginate(octokit.issues.listForRepo, {
owner: GETSENTRY_ORG,
owner: app.org,
repo,
state: 'open',
labels: WAITING_FOR_COMMUNITY_LABEL,
Expand Down

0 comments on commit 61d3556

Please sign in to comment.