-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tim Miller <[email protected]>
- Loading branch information
Showing
1 changed file
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,27 @@ | ||
# guac-github-action | ||
Github Action for ingesting SBOMs and Attestations into GUAC | ||
# Overview | ||
Github Action for ingesting SBOMs and Attestations into [GUAC](https://github.com/guacsec/guac) as part of your github workflow. | ||
This will enable quick and easy integration to your GUAC instance with very minimal input. | ||
|
||
Currently this wraps the `guacone collect files` command. | ||
|
||
## Inputs | ||
### `files` | ||
**Required** Path to directory or specific file to ingest | ||
|
||
### `gql-addr` | ||
**Required** GUAC GraphQL API Endpoint - example: http://localhost:8080/query | ||
|
||
## Outputs | ||
|
||
### `console_out` | ||
Raw output of the guacone command | ||
|
||
## Example Usage | ||
|
||
```- name: GUAC ingestion | ||
uses: actions/guacone@v1 | ||
id: guacone | ||
with: | ||
files: './spdx.json' | ||
gql-addr: 'http://localhost:1234/query' | ||
``` |