We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 956b905 commit e83683fCopy full SHA for e83683f
packages/build/src/steps/run_step.ts
@@ -87,6 +87,10 @@ export const runStep = async function ({
87
attributes['build.execution.step.plugin_version'] = pluginPackageJson.version
88
}
89
90
+ if (pluginPackageJson?.author) {
91
+ attributes['build.execution.step.plugin_author'] = pluginPackageJson.author
92
+ }
93
+
94
const spanCtx = setMultiSpanAttributes(attributes)
95
// If there's no `coreStepId` then this is a plugin execution
96
const spanName = `run-step-${coreStepId || `plugin-${event}`}`
packages/config/src/types/integrations.ts
@@ -5,4 +5,5 @@ export type Integration = {
5
dev?: {
6
path: string
7
8
+ author?: string
9
0 commit comments