mirror of
https://github.com/dkershner6/post-api-call-action.git
synced 2024-11-15 15:03:51 +08:00
12 lines
549 B
TypeScript
12 lines
549 B
TypeScript
import { GitHubActionTypeScriptProject } from 'projen-github-action-typescript';
|
|
const project = new GitHubActionTypeScriptProject({
|
|
defaultReleaseBranch: 'main',
|
|
devDeps: ['projen-github-action-typescript'],
|
|
name: 'post-api-call-action',
|
|
projenrcTs: true,
|
|
|
|
// deps: [], /* Runtime dependencies of this module. */
|
|
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
|
|
// packageName: undefined, /* The "name" in package.json. */
|
|
});
|
|
project.synth(); |