Skip to content

Commit

Permalink
Add readme
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Miller <[email protected]>
  • Loading branch information
trmiller committed Aug 15, 2023
1 parent b490260 commit d238cf9
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions README.md
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'
```

0 comments on commit d238cf9

Please sign in to comment.