mirror of
https://github.com/actions/toolkit.git
synced 2026-08-19 00:00:17 +02:00
Format code and update .gitignore to exclude .nx cache
Co-authored-by: TingluoHuang <[email protected]>
This commit is contained in:
co-authored by
TingluoHuang
parent
4e1c194b34
commit
6d9a3fe547
@@ -378,7 +378,7 @@ describe('basics', () => {
|
||||
it('appends orchestration ID to user-agent when ACTIONS_ORCHESTRATION_ID is set', async () => {
|
||||
const orchId = 'test-orch-id-12345'
|
||||
process.env['ACTIONS_ORCHESTRATION_ID'] = orchId
|
||||
|
||||
|
||||
const http: httpm.HttpClient = new httpm.HttpClient('http-client-tests')
|
||||
const res: httpm.HttpClientResponse = await http.get(
|
||||
'https://postman-echo.com/get'
|
||||
@@ -389,13 +389,13 @@ describe('basics', () => {
|
||||
expect(obj.headers['user-agent']).toBe(
|
||||
`http-client-tests (gh_orch_id:${orchId})`
|
||||
)
|
||||
|
||||
|
||||
delete process.env['ACTIONS_ORCHESTRATION_ID']
|
||||
})
|
||||
|
||||
it('does not modify user-agent when ACTIONS_ORCHESTRATION_ID is not set', async () => {
|
||||
delete process.env['ACTIONS_ORCHESTRATION_ID']
|
||||
|
||||
|
||||
const http: httpm.HttpClient = new httpm.HttpClient('http-client-tests')
|
||||
const res: httpm.HttpClientResponse = await http.get(
|
||||
'https://postman-echo.com/get'
|
||||
|
||||
@@ -599,7 +599,8 @@ export class HttpClient {
|
||||
info.options.method = method
|
||||
info.options.headers = this._mergeHeaders(headers)
|
||||
if (this.userAgent != null) {
|
||||
info.options.headers['user-agent'] = this._getUserAgentWithOrchestrationId(this.userAgent)
|
||||
info.options.headers['user-agent'] =
|
||||
this._getUserAgentWithOrchestrationId(this.userAgent)
|
||||
}
|
||||
|
||||
info.options.agent = this._getAgent(info.parsedUrl)
|
||||
|
||||
Reference in New Issue
Block a user