You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the limitation of Github workflow, there is no good way to handle concurrent run. The comment line number is an import parameter for CodeMaker processor to perform generation. Since the line number is determined when ```pull_request_review_comment``` web hook event is triggerred, multiple concurrent workflow trigger will cause the line number to be outdated because some other runs may have already updated the file content.
23
-
24
-
Because of this limitation, it is important to post PR comment one by one, and do not post a new one until the workflow run triggerred by the previous one has completed.
25
-
26
-
We are currently working on a solution on this.
22
+
The best way of using this action is through either Pull Request code review, when multiple comments can be submitted at
23
+
once or through single pull requests comment. Creating multiple single comments in quick succession will cause race
24
+
condition as the comments will become out of sync with the code. Submitting multiple comments at once can be done in
25
+
reliable way only through pull request code review.
0 commit comments