1
0
Fork 0

use require

pull/1503/head
Bethany 2023-08-22 11:33:00 -07:00
parent 81a802e7e0
commit dd26bb1149
4 changed files with 10 additions and 3 deletions

View File

@ -3,3 +3,4 @@ packages/*/node_modules/
packages/*/lib/
packages/glob/__tests__/_temp
packages/*/src/generated/*/
packages/artifact/src/internal/shared/user-agent.ts

View File

@ -6,6 +6,7 @@ import {RetryOptions, getRetryOptions} from './retry-options'
import {RequestRequestOptions} from '@octokit/types'
import {requestLog} from '@octokit/plugin-request-log'
import {retry} from '@octokit/plugin-retry'
import * as core from '@actions/core'
type Options = {
log?: Console
@ -52,17 +53,23 @@ export async function getArtifact(
)
if (getArtifactResp.status !== 200) {
core.warning('non-200 response from GitHub API: ${getArtifactResp.status}')
return {
success: false
}
}
if (getArtifactResp.data.artifacts.length === 0) {
core.warning('no artifacts found')
return {
success: false
}
}
if (getArtifactResp.data.artifacts.length > 1) {
core.warning('more than one artifact found, returning first')
}
return {
success: true,
artifact: {

View File

@ -1,4 +1,4 @@
import * as packageJson from '../../../package.json'
const packageJson = require('../../../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

View File

@ -16,6 +16,5 @@
},
"include": [
"./src"
],
"resolveJsonModule": true
]
}