initial commit
All checks were successful
CI / build (push) Successful in 17s
CI / release (push) Has been skipped

This commit is contained in:
2026-03-05 21:57:44 +11:00
commit 1c2214b0f4
7 changed files with 516 additions and 0 deletions

31
package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "pending-payload-migration",
"version": "0.1.0",
"main": "index.js",
"scripts": {
"build": "ncc build src/index.js -o dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "ssh://git@liamsgit.dev:2222/LiamPietralla/pending-payload-migration-action.git"
},
"keywords": [
"payload",
"migrations",
"github",
"actions",
"ci",
"cd"
],
"author": "Liam Pietralla",
"license": "ISC",
"description": "Check whether pending migrations are pending for PayloadCMS and if so report errors to stop deployments.",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.4"
}
}