Files
toolkit/packages/artifact/src/internal/shared/user-agent.ts
T

9 lines
303 B
TypeScript
Raw Normal View History

2023-08-22 10:06:40 -07:00
import * as packageJson from '../../../package.json'
/**
* Ensure that this User Agent String is used in all HTTP calls so that we can monitor telemetry between different versions of this package
*/
export function getUserAgentString(): string {
return `@actions/artifact-${packageJson.version}`
}