-
Notifications
You must be signed in to change notification settings - Fork 21.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Explain how to trigger only once per month on last calendar day of month #26707
Comments
@hkusulja Thank you for the question! We are investigating this and will get back to you shortly. |
@hkusulja That's a good question! Azure Logic Apps is set to replace Azure Scheduler as mentioned in this official announcement. So, the Recurrence Trigger supports the advanced examples mentioned here. The UI doesn't show it but you can include them in your workflow JSON directly. So, for your use case, your trigger JSON would be something like this "triggers": {
"Recurrence": {
"recurrence": {
"frequency": "Month",
"interval": 1,
"schedule": {
"monthDays": [-1]
}
},
"type": "Recurrence"
}
} |
@PramodValavala-MSFT I am using Azure Logic App, with trigger -
Now I see your example, i have modified it to:
Please confirm this is only UI / designer issue, and it will be fixed? can you document that this is only code option? |
@hkusulja Yes. Its just that the UI doesn't support these advanced schedules yet. Please feel free to open a feature request on UserVoice for enhancing the UI to support these use cases. As for the docs, we will assign this issue to the content author to further investigate and update accordingly. |
yeah, please update the docs, and say this options is only through code/JSON , not in Designer / UI... tx |
@hkusulja & @PramodValavala-MSFT, thank you! I've created a work item on our doc backlog for triage. #please-close |
Hi, I want to set recurrence schedule to 1st of month starting at 03:00 AM "triggers": { Result after saving: "triggers": { What should I do? Thanks! |
Is there an option that would allow for something like 'run on the 8th business day of the month' ? Not sure if the above methods would work in this case? |
@kevinlam1 & @derek1ee, could you please help answer the question from @strategywise about how to set a recurrence to something like "8th business day of the month"? Thanks! GitHub issue: #26707 |
This update is live: https://docs.microsoft.com/azure/connectors/connectors-native-recurrence (inline example under Workflow definition) |
How to trigger on last calendar day of month (some months have 28days, sometimes 29, some 30 and some 31 days) ?
Explain what will happen on:
Start: 2019-01-31
Interval: 1
Frequency: Month
will it run on 2019-02-28 , or it will not be run in February at all ?
Document Details
⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
The text was updated successfully, but these errors were encountered: