Cloudflare Workflows Binding Error in Astro Project

Getting this error when trying to set up Workflows with Astro + Cloudflare adapter:
Worker "workflows:workflows-starter"'s binding "USER_WORKFLOW" refers to service "core:user:" with a named entrypoint "MyWorkflow", but "core:user:" has no such named entrypoint.
Worker "workflows:workflows-starter"'s binding "USER_WORKFLOW" refers to service "core:user:" with a named entrypoint "MyWorkflow", but "core:user:" has no such named entrypoint.
#:schema node_modules/wrangler/config-schema.json
name = "workflows-starter"
main = "src/workflows/index.ts"
compatibility_date = "2024-10-22"

[[workflows]]
# name of your workflow
name = "workflows-starter"
# binding name env.MYWORKFLOW
binding = "MY_WORKFLOW"
# service = "workflows-starter" # Add this line - should match the name
# this is class that extends the Workflow class in src/index.ts
class_name = "MyWorkflow"
#:schema node_modules/wrangler/config-schema.json
name = "workflows-starter"
main = "src/workflows/index.ts"
compatibility_date = "2024-10-22"

[[workflows]]
# name of your workflow
name = "workflows-starter"
# binding name env.MYWORKFLOW
binding = "MY_WORKFLOW"
# service = "workflows-starter" # Add this line - should match the name
# this is class that extends the Workflow class in src/index.ts
class_name = "MyWorkflow"
No description
3 Replies
myconull
myconull2mo ago
This happened to me too. Did you manage to get around @bkyerv Nowhere in my project do I even have a USER_WORKFLOW
alex (he/him)
alex (he/him)4w ago
Getting the same issue but with a worker-to-worker setup, without Astro.
bkyerv
bkyervOP3w ago
nope. thing is that every time you want to build something (even something trivial) using cloudflare you run into some sort of limitations. I even forgot what the issue was about as I abandoned any remaining hope to get it done with cf

Did you find this page helpful?