Skip to content

Commit

Permalink
Fix pipeline completion trigger description (#734)
Browse files Browse the repository at this point in the history
**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 <javydekoning+github@gmail.com>
  • Loading branch information
sbkok and javydekoning committed May 22, 2024
1 parent 301ed83 commit 67f0032
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 67f0032

Please sign in to comment.