Condition to allow events on weekend.
yaml
type: "io.kestra.plugin.core.condition.Weekend"Examples
Trigger the flow only on weekend, i.e. on Saturdays and Sundays.
yaml
id: schedule_condition_weekend
namespace: company.team
tasks:
  - id: log_message
    type: io.kestra.plugin.core.log.Log
    message: "This flow will execute only on weekends at 11:00 am."
triggers:
  - id: schedule
    type: io.kestra.plugin.core.trigger.Schedule
    cron: "0 11 * * *"
    conditions:
      - type: io.kestra.plugin.core.condition.Weekend
Properties
date string
 Default 
{{ trigger.date }}The date to test.
Can be any variable or any valid ISO 8601 datetime. By default, it will use the trigger date.
