CloudCannon 自动构建不是 运行 在指定的日期和时间

CloudCannon automatic builds not running on specified date and time

我正在尝试使用 CloudCannon 的 Automatic Build 来安排帖子。我在我的项目的根目录中创建了一个 _schedule.txt 文件,并根据他们的文档在我的 _config.yml 中的 include 中添加了该文件。我已经尝试了几次,但无法正常工作。我错过了什么?

_schedule.txt

2021-06-15T13:00:00+00:00:00,guestpost,_posts/2021-06-15-the-greatest-guest-post-ever.md 

_config.yml

include: ["_schedule.txt"]

我已经设法使用您的示例使其正常工作,但从 _schedule.txt 文件的日期中删除了最后一个 :00

2021-06-15T13:00:00+00:00:00 // Doesn't work
2021-06-15T13:00:00+00:00    // Works

我的文件:

_schedule.txt

2021-10-29T13:00:00+00:00,guestpost,_posts/2021-10-29-the-greatest-guest-post-ever.md 

_config.yml

include: ["_schedule.txt"]