Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ with:

**Required** The HTTP method to use. Default `"GET"`.

### `auth`

Optional username:password for HTTP Basic Authorization.

### `digestAuth`

Optional username:password for HTTP Digest Authorization.

### `headers`

Optional JSON-string of headers to send along. For example:
Expand Down
6 changes: 6 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ inputs:
url:
description: "The URL to talk to"
required: true
auth:
description: "username:password used in HTTP Basic Authorization"
required: false
digest-auth:
description: "username:password used in HTTP Digest Authorization"
required: false
headers:
description: "Optional headers, as a JSON string"
required: false
Expand Down
Loading