mirror of
https://github.com/dkershner6/post-api-call-action.git
synced 2024-11-15 13:23:50 +08:00
27 lines
640 B
YAML
Generated
27 lines
640 B
YAML
Generated
# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen".
|
|
|
|
name: POST API Call Action
|
|
description: Send a POST request action
|
|
runs:
|
|
using: node20
|
|
main: dist/index.js
|
|
inputs:
|
|
url:
|
|
description: URL to send post request to
|
|
required: true
|
|
data:
|
|
description: JSON string of data to pass into request
|
|
default: "{}"
|
|
required: false
|
|
headers:
|
|
description: JSON string of headers to pass into request
|
|
default: "{}"
|
|
required: false
|
|
params:
|
|
description: JSON string of query parameters to pass into request
|
|
default: "{}"
|
|
required: false
|
|
branding:
|
|
icon: phone
|
|
color: orange
|