Skip to content

Commit ac49314

Browse files
authored
Merge pull request #1834 from github/henrymercer/analysis-summary-v2-ff
Rename new analysis summary feature flag
2 parents 2160dd3 + 9a510d9 commit ac49314

12 files changed

+28
-28
lines changed

lib/analyze.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/codeql.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/codeql.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/codeql.test.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/codeql.test.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/feature-flags.js

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/feature-flags.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/analyze.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ export async function runQueries(
389389
}
390390

391391
if (
392-
!(await features.getValue(Feature.NewAnalysisSummaryEnabled, codeql))
392+
!(await features.getValue(Feature.AnalysisSummaryV2Enabled, codeql))
393393
) {
394394
await runPrintLinesOfCode(language);
395395
}

src/codeql.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1137,7 +1137,7 @@ for (const {
11371137
"-v",
11381138
"",
11391139
stubConfig,
1140-
createFeatures(featureEnabled ? [Feature.NewAnalysisSummaryEnabled] : []),
1140+
createFeatures(featureEnabled ? [Feature.AnalysisSummaryV2Enabled] : []),
11411141
getRunnerLogger(true),
11421142
);
11431143
t.is(

0 commit comments

Comments
 (0)