Add CronOverlapPolicy in Update/Create workflowExecution CQL command#1
Open
Add CronOverlapPolicy in Update/Create workflowExecution CQL command#1
Conversation
timl3136
pushed a commit
that referenced
this pull request
Oct 21, 2025
…ence-workflow#7278) <!-- Tell your future self why have you made these changes --> **Why?** Our existing commit process: - doesn't immediately convey when there are breaking changes to the releaser - doesn't provide information about how to categorize changes in each release - is entirely manual preparing releases - doesn't always give "good" information about what is contained within a commit - doesn't give a good idea of the risk of a given commit Furthermore, users have stated that our release notes do not provide easily discernable information about what is in a release, including: - if there are breaking changes - which features are in a given release - why they should upgrade Adding conventional commits aims to tackle these pieces and make contributing to the repository significantly easier. This PR adds a linter that will give feedback to developers on their commit message style, and will eventually enforce conventional commits for each merge PR. <!-- How have you verified this change? Tested locally? Added a unit test? Checked in staging env? --> **How did you test it?** Currently testing. <!-- Assuming the worst case, what can be broken when deploying this change to production? --> **Potential risks** Adding this GitHub action may have unintended consequences for the commit process, and should be monitored to ensure that it doesn't inhibit merging to the repository. <!-- Is it notable for release? e.g. schema updates, configuration or data migration required? If so, please mention it, and also update CHANGELOG.md --> **Release notes** N/A <!-- Is there any documentation updates should be made for config, https://cadenceworkflow.io/docs/operation-guide/setup/ ? If so, please open an PR in https://github.com/cadence-workflow/cadence-docs --> **Documentation Changes**⚠️ TODO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changed?
Add CronOverlapPolicy in Update/Create workflowExecution CQL command, without this change, the field in cassandra won't be populated.
Why?
We need this change for inserting CronOverlapPolicy through the update/create workflowExecution.
How did you test it?
Unit tests
Potential risks
Release notes
Documentation Changes