ClaudeCloudflare Developer PlatformJun 2, 2026, 3:00 PM

Workflows, Workers - Schedule Workflow instances directly from your Workflow binding

A condensed section focused on the key takeaways first.

Original Post

Quick Digest

Summary

A condensed section focused on the key takeaways first.

claudeen

Workflows, Workers - Schedule Workflow instances directly from your Workflow binding Summary

Key Points

  • Point 1: Changelog New updates and improvements at Cloudflare.
  • Point 2: Subscribe to RSS View RSS feeds ← Back to all posts Schedule Workflow instances directly from your Workflow binding Jun 02, 2026 Workflows Workers You can now attach cron schedules
  • Point 3: Each scheduled run creates a new Workflow instance automatically, so you do not need to define a separate Worker with a scheduled handler just to trigger your Workflow on an interv

Summary

This is an English summary of "Workflows, Workers - Schedule Workflow instances directly from your Workflow binding" published on 2026-06-02.

Key Points

  • Point 1: Changelog New updates and improvements at Cloudflare.
  • Point 2: Subscribe to RSS View RSS feeds ← Back to all posts Schedule Workflow instances directly from your Workflow binding Jun 02, 2026 Workflows Workers You can now attach cron schedules
  • Point 3: Each scheduled run creates a new Workflow instance automatically, so you do not need to define a separate Worker with a scheduled handler just to trigger your Workflow on an interv

Full Translation

Translations

A translation section that keeps the flow of the original article.

claudeja

Workflows, Workers - Schedule Workflow instances directly from your Workflow binding(原文タイトル)

概要

公開日: 2026-06-02 翻訳生成に失敗したため、原文をそのまま保存しています。

原文

Changelog New updates and improvements at Cloudflare. Subscribe to RSS View RSS feeds ← Back to all posts Schedule Workflow instances directly from your Workflow binding Jun 02, 2026 Workflows Workers You can now attach cron schedules directly to a Workflow binding in wrangler.jsonc . Each scheduled run creates a new Workflow instance automatically, so you do not need to define a separate Worker with a scheduled handler just to trigger your Workflow on an interval. For example, you can configure hourly, every-15-minute, or weekday schedules on the same Workflow: JSONC { " workflows " : [ { " name " : "my-scheduled-workflow" , " binding " : "MY_WORKFLOW" , " class_name " : "MyScheduledWorkflow" , " schedules " : [ "0 * * * " , "/15 * * * *" , "0 9 * * MON-FRI" ] } ] } This makes it easier to build recurring jobs such as database backups, invoice generation, report aggregation, and cleanup tasks without wiring up a separate Cron Trigger entrypoint. For more information, refer to Trigger Workflows . Resources API New to Cloudflare? Directory Sponsorships Open Source Cloudflare Research Support Help Center System Status Compliance GDPR Company cloudflare.com Our team Careers Tools Cloudflare Radar Cloudflare Labs Speed Test Is BGP Safe Yet? Certificate Transparency Community Community forum X Discord YouTube GitHub © 2026 Cloudflare, Inc. Privacy Policy Terms of Use Report Security Issues Trademark Cookie Settings Was this helpful? Yes No

Workflows, Workers - Schedule Workflow instances directly from your Workflow binding | Cloudflare Developer Platform | DocsDigest