Skip to content

Commit 2885b5b

Browse files
committed
Fix README and update action
- Support for Action output
1 parent f709f03 commit 2885b5b

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The main use case for `codeqlsummarize` is to run it as an Action so the purpose
1010

1111
```yml
1212
- name: Generate CodeQL Summaries
13-
uses: advanced-security/gh-codeql-summarize@main
13+
uses: advanced-security/codeql-summarize@main
1414
with:
1515
# This file defines the projects you want to make sure to get the latest and greatest
1616
# summaries from.

action.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ inputs:
1414

1515
format:
1616
description: "Exporting Format (default: bundle)"
17-
default: bundle
17+
default: extensions
18+
19+
output:
20+
description: "Output Directory"
21+
default: ./
1822

1923
repository:
2024
description: "GitHub Repository"
@@ -35,6 +39,7 @@ runs:
3539
run: |
3640
"${{ github.action_path }}/codeql-summarize" \
3741
--input "${{ inputs.projects }}" \
42+
--output "${{ inputs.output }}" \
3843
--format "${{ inputs.format }}" \
3944
--project-repo "${{ inputs.project }}" \
4045
--language "${{ inputs.language }}" \

0 commit comments

Comments
 (0)