File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 9
9
commitizen :
10
10
name : cz_customize
11
11
customize :
12
- schema_pattern : " ^(?P<change_type>feat|fix|perf|refactor|remove|style|test|build|docs|chore|ci|BREAKING CHANGE)(?:\\ ((?P<scope>[^()\\ r\\ n]*)\\ )|\\ ()?(?P<breaking>!)?:\\ s(?P<message>.*)?"
13
- commit_parser : " ^(?P<change_type>feat|fix|perf|refactor|remove|style|test|build|docs|chore|ci|BREAKING CHANGE)(?:\\ ((?P<scope>[^()\\ r\\ n]*)\\ )|\\ ()?(?P<breaking>!)?:\\ s(?P<message>.*)?"
12
+ schema_pattern : " ^(?P<change_type>feat|fix|perf|refactor|remove|style|test|build|docs|chore|ci|dev| BREAKING CHANGE)(?:\\ ((?P<scope>[^()\\ r\\ n]*)\\ )|\\ ()?(?P<breaking>!)?:\\ s(?P<message>.*)?"
13
+ commit_parser : " ^(?P<change_type>feat|fix|perf|refactor|remove|style|test|build|docs|chore|ci|dev| BREAKING CHANGE)(?:\\ ((?P<scope>[^()\\ r\\ n]*)\\ )|\\ ()?(?P<breaking>!)?:\\ s(?P<message>.*)?"
14
14
# The changelog_pattern identifies the commit types
15
15
# that will be included.
16
16
# Build the changelog with 'cz ch' on the staging or production branches.
Original file line number Diff line number Diff line change @@ -334,6 +334,7 @@ def _handle_pod_message(self, msg: PodMessage) -> None:
334
334
_LOGGER .debug ("API.get_workflow(%s) returned: -\n %s" , wfid , str (wf_response ))
335
335
336
336
# We then inspect the Workflow to determine the next step.
337
+ _LOGGER .debug ("End of RunningWorkflowStep %s (%s)" , r_wfsid , r_wfid )
337
338
self ._wapi_adapter .set_running_workflow_step_done (
338
339
running_workflow_step_id = r_wfsid ,
339
340
success = True ,
@@ -401,6 +402,7 @@ def _handle_pod_message(self, msg: PodMessage) -> None:
401
402
402
403
# If no launch was attempted we can assume this is the end of the running workflow.
403
404
if not launch_attempted :
405
+ _LOGGER .debug ("End of RunningWorkflow %s" , r_wfid )
404
406
self ._wapi_adapter .set_running_workflow_done (
405
407
running_workflow_id = r_wfid ,
406
408
success = True ,
You can’t perform that action at this time.
0 commit comments