Hello,
I'm trying to set up a trigger that will run every year, at 1st January. I tried to create two triggers, for both of them I marked 'Start on creation' checkbox, connected to the pipeline and published them, but none of these two triggers fired up. Is there any bug in the following jsons?
First:
{
"name": “Test”,
"properties": {
"annotations": [],
"runtimeState": "Started",
"pipelines": [
{
"pipelineReference": {
"referenceName": “MyPipeline”,
"type": "PipelineReference"
},
"parameters": {
“name”: “1”
}
}
],
"type": "ScheduleTrigger",
"typeProperties": {
"recurrence": {
"frequency": "Month",
"interval": 12,
"startTime": "2024-01-19T09:37:00",
"timeZone": "Central European Standard Time",
"schedule": {
"minutes": [
0
],
"hours": [
3
],
"monthDays": [
1
]
}
}
}
}
}
Second:
{
"name": “Test 2“,
"properties": {
"annotations": [],
"runtimeState": "Started",
"pipelines": [
{
"pipelineReference": {
"referenceName": “MyPipeline”,
"type": "PipelineReference"
},
"parameters": {
“name”: “test”
}
}
],
"type": "ScheduleTrigger",
"typeProperties": {
"recurrence": {
"frequency": "Month",
"interval": 12,
"startTime": "2024-01-01T03:00:00",
"timeZone": "Central European Standard Time",
"schedule": {
"minutes": [
0
],
"hours": [
5
],
"monthDays": [
1
]
}
}
}
}
}