Skip to content

Commit afbee18

Browse files
committed
chore: remove Linear issue references from comments
1 parent 5a26e9d commit afbee18

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

packages/cli/src/commands/scan/create-scan-from-github.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export async function createScanFromGithub({
105105
// this, a rate-limited GitHub token made every repo fail its tree
106106
// fetch, the outer loop swallowed each error, and the final summary
107107
// ("N repos / 0 manifests") misled users into thinking the scan
108-
// worked. See ASK-167.
108+
// worked.
109109
let blockingError: CResult<undefined> | undefined
110110
const perRepoFailures: Array<{ repo: string; message: string }> = []
111111
for (const repoSlug of targetRepos) {

packages/cli/test/unit/commands/scan/create-scan-from-github.test.mts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -433,11 +433,11 @@ describe('error message quality', () => {
433433
})
434434
})
435435

436-
// Regression tests for ASK-167: the bulk loop in createScanFromGithub
437-
// used to swallow per-repo failures, so a rate-limited token returned
438-
// ok:true with "0 manifests". These drive the full function through
439-
// mocked octokit calls.
440-
describe('createScanFromGithub rate-limit short-circuit (ASK-167)', () => {
436+
// Regression tests: the bulk loop in createScanFromGithub used to
437+
// swallow per-repo failures, so a rate-limited token returned ok:true
438+
// with "0 manifests". These drive the full function through mocked
439+
// octokit calls.
440+
describe('createScanFromGithub rate-limit short-circuit', () => {
441441
beforeEach(() => {
442442
vi.clearAllMocks()
443443
})

0 commit comments

Comments
 (0)