mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-06 21:07:47 +00:00
9 lines
229 B
JavaScript
Vendored
9 lines
229 B
JavaScript
Vendored
module.exports = async ({ github, context }) => {
|
|
await github.rest.actions.createWorkflowDispatch({
|
|
owner: context.repo.owner,
|
|
repo: 'api',
|
|
workflow_id: 'cron-update-build-container.yml',
|
|
ref: 'main',
|
|
});
|
|
};
|