From 00965f632ec63ad6190f396c7796dadab0c6e92e Mon Sep 17 00:00:00 2001 From: Daniel Barnes Date: Tue, 28 Sep 2021 13:37:15 -0700 Subject: [PATCH] readme table --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 928eb6a..8d2d1a3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,19 @@ # create-issue-action Another create an issue on Github actions that strives to be as simple as possible... +## Config +options for `with:` +| Option | Default Value | Notes | +| ------------ | ------------ | ------------ | +| token | github.token / `required` | Use `${{ github.token }}` or create a PAT stored in the secrets store. | +| owner | github.context.repo.owner | The owner of the repo to make the issue on. Implied from the context of the running action. | +| repo | github.context.repo.repo | The repo to make the issue on. Implied from the context of the running action. | +| title | `required` | | +| body | | | +| milestone | | | +| labels | | A comma seperated list of labels | +| assignees | | A comma seperated list of Github usernames to assign the issue to | + ## Usage Limited test has currnet been done, only tested on `ubuntu-latest`