Skip to content

Commit 8ce2f8f

Browse files
authored
Feature/ci (#12)
1 parent 6f0dde8 commit 8ce2f8f

18 files changed

Lines changed: 3725 additions & 69 deletions

File tree

.github/actions/package-lock.json

Lines changed: 449 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/package.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "github-actions",
3+
"version": "1.0.0",
4+
"scripts": {},
5+
"license": "ISC",
6+
"dependencies": {
7+
"@actions/core": "^1.10.0",
8+
"@actions/github": "^5.1.1"
9+
},
10+
"devDependencies": {
11+
"@vercel/ncc": "^0.36.1"
12+
}
13+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "PR Checklist"
2+
description: "Check the git diff of a PR to see if it contains required files"
3+
inputs:
4+
files-changed:
5+
required: true
6+
type: string
7+
files-required:
8+
required: true
9+
type: string
10+
files-optional:
11+
type: string
12+
default: ""
13+
outputs:
14+
missing:
15+
description: "Missing required file names separated by '__I__'"
16+
skipped:
17+
description: "Missing optional file names separated by '__I__'"
18+
found:
19+
description: "Found file names separated by '__I__'"
20+
runs:
21+
using: "node16"
22+
main: "dist/index.js"

0 commit comments

Comments
 (0)