Skip to content

Commit

Permalink
Fix pipeline completion trigger description
Browse files Browse the repository at this point in the history
**Why?**

Resolves: awslabs#654.

The description of the pipeline completion triggers did not parse the dynamic
parameters that were defined.
  • Loading branch information
sbkok committed May 22, 2024
1 parent 274e351 commit bdfc973
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def __init__(self, scope: Construct, id: str, params: dict, **kwargs):
_event = _events.Rule(
self,
f'completion_{pipeline}',
description="Triggers {pipeline} on completion of {params['pipeline']}",
description=f"Triggers {pipeline} on completion of {params['pipeline']}",
enabled=True,
event_pattern=_events.EventPattern(
detail={
Expand Down

0 comments on commit bdfc973

Please sign in to comment.