{{input disabled=(or disabled webhookDisabled) type="checkbox" id="webhook" checked=pipeline.triggerWebhookPush}} {{#if selectedModel.sourceCodeConfig.url}} {{#unless selectedRepo.permissions.admin}} {{banner-message color='bg-warning mb-0 mt-10' message='No permission to set webhook'}} {{/unless}} {{/if}}
{{input disabled=(or disabled webhookDisabled) type="checkbox" id="webhookPR" checked=pipeline.triggerWebhookPr}} {{#if selectedModel.sourceCodeConfig.url}} {{#unless selectedRepo.permissions.admin}} {{banner-message color='bg-warning mb-0 mt-10' message='No permission to set webhook'}} {{/unless}} {{/if}}
{{input disabled=disabled type="checkbox" id="cron" checked=state.setCustomCron}}
{{#if state.setCustomCron}}
In
{{searchable-select content=timezones value=pipeline.triggerCronTimezone optionLabelPath="text" optionValuePath="utcStr" readOnly=(if (eq cronType 'everyday') disabled true) }}
{{radio-button id="everyday" disabled=disabled selection=cronType value="everyday"}}
{{radio-button id="custom" disabled=disabled selection=cronType value="custom"}} {{#if customCron }} {{#if (eq cronType 'custom')}}

{{pretty-cron customCron 'toString'}}

{{/if}} {{/if}}
{{/if}}