Skip to content

Commit

Permalink
Add feature flag for uploading failed SARIF
Browse files Browse the repository at this point in the history
  • Loading branch information
henrymercer committed Nov 23, 2022
1 parent b822f53 commit 29dc2a5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/test-report-failed-run.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Test reporting a failed run
on: push

env:
CODEQL_ACTION_UPLOAD_FAILED_SARIF: true

jobs:
test:
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions lib/feature-flags.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/feature-flags.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions src/feature-flags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export enum Feature {
FileBaselineInformationEnabled = "file_baseline_information_enabled",
MlPoweredQueriesEnabled = "ml_powered_queries_enabled",
TrapCachingEnabled = "trap_caching_enabled",
UploadFailedSarifEnabled = "upload_failed_sarif_enabled",
}

export const featureConfig: Record<
Expand Down Expand Up @@ -48,6 +49,10 @@ export const featureConfig: Record<
envVar: "CODEQL_TRAP_CACHING",
minimumVersion: undefined,
},
[Feature.UploadFailedSarifEnabled]: {
envVar: "CODEQL_ACTION_UPLOAD_FAILED_SARIF",
minimumVersion: "2.11.3",
},
};

/**
Expand Down

0 comments on commit 29dc2a5

Please sign in to comment.