Skip to content

Commit

Permalink
github: connectionId -> connectorId (#6338)
Browse files Browse the repository at this point in the history
* github: connectionId -> connectorId

* go for it
  • Loading branch information
spolu authored Jul 19, 2024
1 parent e53d65e commit e180646
Show file tree
Hide file tree
Showing 6 changed files with 134 additions and 166 deletions.
10 changes: 5 additions & 5 deletions connectors/src/api/webhooks/webhook_github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ async function garbageCollectRepos(
for (const { name, id } of repos) {
try {
await launchGithubRepoGarbageCollectWorkflow(
c.id.toString(),
c.id,
orgLogin,
name,
id
Expand Down Expand Up @@ -501,7 +501,7 @@ async function syncIssue(
await Promise.all(
connectors.map((c) =>
launchGithubIssueSyncWorkflow(
c.id.toString(),
c.id,
orgLogin,
repoName,
repoId,
Expand Down Expand Up @@ -543,7 +543,7 @@ async function syncDiscussion(
await Promise.all(
connectors.map((c) =>
launchGithubDiscussionSyncWorkflow(
c.id.toString(),
c.id,
orgLogin,
repoName,
repoId,
Expand Down Expand Up @@ -585,7 +585,7 @@ async function garbageCollectIssue(
await Promise.all(
connectors.map((c) =>
launchGithubIssueGarbageCollectWorkflow(
c.id.toString(),
c.id,
orgLogin,
repoName,
repoId,
Expand Down Expand Up @@ -627,7 +627,7 @@ async function garbageCollectDiscussion(
await Promise.all(
connectors.map((c) =>
launchGithubDiscussionGarbageCollectWorkflow(
c.id.toString(),
c.id,
orgLogin,
repoName,
repoId,
Expand Down
Loading

0 comments on commit e180646

Please sign in to comment.