Skip to content

Commit 67f0032

Browse files
sbkokjavydekoning
andauthored
Fix pipeline completion trigger description (#734)
**Why?** Resolves: #654. The description of the pipeline completion triggers did not parse the dynamic parameters that were defined. Co-authored-by: Javy de Koning <[email protected]>
1 parent 301ed83 commit 67f0032

File tree

1 file changed

+1
-1
lines changed
  • src/lambda_codebase/initial_commit/bootstrap_repository/adf-build/shared/cdk/cdk_constructs

1 file changed

+1
-1
lines changed

src/lambda_codebase/initial_commit/bootstrap_repository/adf-build/shared/cdk/cdk_constructs/adf_events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def __init__(self, scope: Construct, id: str, params: dict, **kwargs):
119119
_event = _events.Rule(
120120
self,
121121
f'completion_{pipeline}',
122-
description="Triggers {pipeline} on completion of {params['pipeline']}",
122+
description=f"Triggers {pipeline} on completion of {params['pipeline']}",
123123
enabled=True,
124124
event_pattern=_events.EventPattern(
125125
detail={

0 commit comments

Comments
 (0)