mirror of
https://github.com/actions/add-to-project.git
synced 2025-12-10 12:07:05 +00:00
12 lines
216 B
TypeScript
12 lines
216 B
TypeScript
import * as core from '@actions/core'
|
|
import {addToProject} from './add-to-project'
|
|
|
|
addToProject()
|
|
.catch(err => {
|
|
core.setFailed(err.message)
|
|
process.exit(1)
|
|
})
|
|
.then(() => {
|
|
process.exit(0)
|
|
})
|