-
Notifications
You must be signed in to change notification settings - Fork 327
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for the code_scanning_codeql_java_lombok feature flag #1809
Conversation
src/feature-flags.ts
Outdated
@@ -58,6 +59,11 @@ export const featureConfig: Record< | |||
Feature, | |||
{ envVar: string; minimumVersion: string | undefined; defaultValue: boolean } | |||
> = { | |||
[Feature.CodeqlJavaLombokEnabled]: { | |||
envVar: "CODEQL_JAVA_LOMBOK_ENABLED", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For consistency with the others environment variable overrides for the feature flag!
envVar: "CODEQL_JAVA_LOMBOK_ENABLED", | |
envVar: "CODEQL_JAVA_LOMBOK", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That should do it 😸
I think the
minimumVersion
could be older, but I don't think it's worth the time to work out exactly how old.Merge / deployment checklist