Files
add-to-project/src/main.ts

117 lines
2.9 KiB
TypeScript
Raw Normal View History

2022-01-31 14:09:42 -05:00
/* eslint-disable github/no-then */
import * as core from '@actions/core'
import * as github from '@actions/github'
// TODO: Ensure this (and the Octokit client) works for non-github.com URLs, as well.
2022-01-31 14:19:41 -05:00
// https://github.com/orgs|users/<ownerName>/projects/<projectNumber>
2022-01-31 14:09:42 -05:00
const urlParse =
2022-01-31 14:19:41 -05:00
/^(?:https:\/\/)?github\.com\/(?<ownerType>orgs|users)\/(?<ownerName>[^/]+)\/projects\/(?<projectNumber>\d+)/
const projectQuery = (ownerType?: string): string => {
const ownerTypeQuery =
ownerType === 'orgs'
? 'organization'
: ownerType === 'users'
? 'user'
: null
if (!ownerTypeQuery) {
throw new Error(
`Unsupported ownerType: ${ownerType}. Must be one of 'orgs' or 'users'`
)
}
return `query getProject($ownerName: String!, $projectNumber: Int!) {
${ownerTypeQuery}(login: $ownerName) {
projectNext(number: $projectNumber) {
id
}
}
}`
}
2022-01-31 14:09:42 -05:00
interface ProjectNodeIDResponse {
organization: {
projectNext: {
id: string
}
}
}
interface ProjectAddItemResponse {
addProjectNextItem: {
projectNextItem: {
id: string
}
}
}
async function run(): Promise<void> {
const projectUrl = core.getInput('project-url', {required: true})
const ghToken = core.getInput('github-token', {required: true})
const octokit = github.getOctokit(ghToken)
const urlMatch = projectUrl.match(urlParse)
core.debug(`Project URL: ${projectUrl}`)
if (!urlMatch) {
throw new Error(
2022-01-31 14:19:41 -05:00
`Invalid project URL: ${projectUrl}. Project URL should match the format https://github.com/<orgs-or-users>/<ownerName>/projects/<projectNumber>`
2022-01-31 14:09:42 -05:00
)
}
2022-01-31 14:19:41 -05:00
const ownerName = urlMatch.groups?.ownerName
2022-01-31 14:09:42 -05:00
const projectNumber = parseInt(urlMatch.groups?.projectNumber ?? '', 10)
2022-01-31 14:19:41 -05:00
const ownerType = urlMatch.groups?.ownerType
2022-01-31 14:09:42 -05:00
2022-01-31 14:19:41 -05:00
core.debug(`Org name: ${ownerName}`)
2022-01-31 14:09:42 -05:00
core.debug(`Project number: ${projectNumber}`)
2022-01-31 14:19:41 -05:00
core.debug(`Owner type: ${ownerType}`)
2022-01-31 14:09:42 -05:00
// First, use the GraphQL API to request the project's node ID.
const idResp = await octokit.graphql<ProjectNodeIDResponse>(
2022-01-31 14:19:41 -05:00
projectQuery(ownerType),
2022-01-31 14:09:42 -05:00
{
2022-01-31 14:19:41 -05:00
ownerName,
2022-01-31 14:09:42 -05:00
projectNumber
}
)
const projectId = idResp.organization.projectNext.id
const contentId =
github.context.payload.issue?.node_id ??
github.context.payload.pull_request?.node_id
core.debug(`Project node ID: ${projectId}`)
core.debug(`Content ID: ${contentId}`)
// Next, use the GraphQL API to add the issue to the project.
const addResp = await octokit.graphql<ProjectAddItemResponse>(
`mutation addIssueToProject($input: AddProjectNextItemInput!) {
addProjectNextItem(input: $input) {
projectNextItem {
id
}
}
}`,
{
input: {
contentId,
projectId
}
}
)
core.setOutput('itemId', addResp.addProjectNextItem.projectNextItem.id)
}
run()
.catch(err => {
core.setFailed(err.message)
process.exit(1)
})
.then(() => {
process.exit(0)
})