Helps settings prices and adds label to the issues accordingly.
Example of valid configuration:
- plugin: https://ubiquity-os-daemon-pricing.ubq.fi
type: github
with:
labels:
time:
- "Time: <1 Hour"
- "Time: <2 Hours"
- "Time: <4 Hours"
- "Time: <1 Day"
- "Time: <1 Week"
priority:
- "Priority: 1 (Normal)"
- "Priority: 2 (Medium)"
- "Priority: 3 (High)"
- "Priority: 4 (Urgent)"
- "Priority: 5 (Emergency)"
basePriceMultiplier: 1
publicAccessControl:
setLabel: true
fundExternalClosedIssue: false
Supabase can be started through the CLI running
supabase start
Start the Worker by running
yarn worker
To trigger the worker, POST
requests should be made to http://localhost:4000 with a Content-Type: application/json
header and a body
looking like
{
"stateId": "",
"eventName": "",
"eventPayload": "",
"settings": "",
"ref": ""
}
For convenience you can find an .http
file with a valid request here.
To start Jest tests, run
yarn test