ClaudeCloudflare Developer Platform2026/06/02 15:00

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

要点だけを先に読めるように短く再構成したセクションです。

元記事

Quick Digest

要約

要点だけを先に読めるように短く再構成したセクションです。

claudeja

Workflows, Workers - Schedule Workflow instances directly from your Workflow binding の要約

Key Points

  • ポイント1: Changelog New updates and improvements at Cloudflare.
  • ポイント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
  • ポイント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

この記事は 2026-06-02 に公開された「Workflows, Workers - Schedule Workflow instances directly from your Workflow binding」の内容を日本語で簡潔にまとめたものです。

Key Points

  • ポイント1: Changelog New updates and improvements at Cloudflare.
  • ポイント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
  • ポイント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

翻訳

原文の流れを保ったまま読める翻訳セクションです。

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 - WorkflowバインディングからWorkflowインスタンスを直接スケジュールする | Cloudflare Developer Platform | DocsDigest