mirror of
https://github.com/garronej/ts-ci.git
synced 2025-11-30 21:43:05 +00:00
17 lines
313 B
TypeScript
17 lines
313 B
TypeScript
|
|
|
|
|
|
import { action } from "../dispatch_event";
|
|
|
|
action(
|
|
"dispatch_event",
|
|
{
|
|
"owner": "garronej",
|
|
"repo": "test-repo",
|
|
"event_type": "example-event",
|
|
"client_payload_json": JSON.stringify({ "foo": "bar" }),
|
|
"github_token": ""
|
|
},
|
|
{ "debug": console.log }
|
|
);
|
|
|