kopia lustrzana https://github.com/badgen/badgen.net
26 wiersze
744 B
TypeScript
26 wiersze
744 B
TypeScript
import got from '../libs/got'
|
|
import { createBadgenHandler, PathArgs } from '../libs/create-badgen-handler'
|
|
|
|
export default createBadgenHandler({
|
|
title: 'AppVeyor',
|
|
examples: {
|
|
'/appveyor/ci/gruntjs/grunt': 'build',
|
|
'/appveyor/ci/gruntjs/grunt/deprecate': 'build (branch)'
|
|
},
|
|
handlers: {
|
|
'/appveyor/ci/:account/:project/:branch?': handler
|
|
}
|
|
})
|
|
|
|
async function handler ({ account, project, branch }: PathArgs) {
|
|
branch = branch ? `/branch/${branch}` : ''
|
|
const endpoint = `https://ci.appveyor.com/api/projects/${account}/${project}${branch}`
|
|
const { build } = await got(endpoint).json<any>()
|
|
|
|
return {
|
|
subject: 'appveyor',
|
|
status: build.status,
|
|
color: build.status === 'success' ? 'green' : 'red'
|
|
}
|
|
}
|