Skip to content

Commit

Permalink
Shownoteの作成曜日を水曜日にする
Browse files Browse the repository at this point in the history
  • Loading branch information
mktakuya authored Jul 3, 2024
1 parent 4edd8d9 commit 73b24a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const buildExecutionRuleForCreateNewShowNoteStateMachine = (
const { capitalize } = useCapitalize();

return new events.Rule(stack, `ScheduleRuleForCreateNewShowNoteStateMachine${capitalize(props.stage)}`, {
schedule: events.Schedule.expression('cron(0 0 ? * FRI *)'), // 日本時間 金曜 朝9時
schedule: events.Schedule.expression('cron(0 0 ? * WED *)'), // 日本時間 水曜 朝9時
targets: [new targets.SfnStateMachine(stateMachine)],
});
};

0 comments on commit 73b24a4

Please sign in to comment.