Use pipeline ID in event (#92100)

* Use pipeline ID in event

* Fix tests
This commit is contained in:
Paulus Schoutsen
2023-04-26 22:40:17 -04:00
committed by GitHub
parent 32ed45084a
commit 7c696754ed
6 changed files with 40 additions and 38 deletions

View File

@@ -370,7 +370,7 @@ class PipelineRun:
def start(self) -> None:
"""Emit run start event."""
data = {
"pipeline": self.pipeline.name,
"pipeline": self.pipeline.id,
"language": self.language,
}
if self.runner_data is not None: