Skip to content

Commit 1e1dcf4

Browse files
committed
Add GitHub code review and issues
1 parent f18dffc commit 1e1dcf4

17 files changed

Lines changed: 2588 additions & 3 deletions

File tree

.changeset/all-knives-build.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@plotday/twister": minor
3+
---
4+
5+
Added: SourceControl interface for services that work with code pull requests

pnpm-lock.yaml

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

tools/github-issues/package.json

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"name": "@plotday/tool-github-issues",
3+
"displayName": "GitHub Issues",
4+
"description": "Sync with GitHub Issues",
5+
"author": "Plot <team@plot.day> (https://plot.day)",
6+
"license": "MIT",
7+
"version": "0.1.0",
8+
"type": "module",
9+
"main": "./dist/index.js",
10+
"types": "./dist/index.d.ts",
11+
"exports": {
12+
".": {
13+
"@plotday/source": "./src/index.ts",
14+
"types": "./dist/index.d.ts",
15+
"default": "./dist/index.js"
16+
}
17+
},
18+
"files": [
19+
"dist",
20+
"README.md",
21+
"LICENSE"
22+
],
23+
"scripts": {
24+
"build": "tsc",
25+
"clean": "rm -rf dist"
26+
},
27+
"dependencies": {
28+
"@plotday/twister": "workspace:^",
29+
"@octokit/rest": "^21.1.1"
30+
},
31+
"devDependencies": {
32+
"typescript": "^5.9.3"
33+
},
34+
"repository": {
35+
"type": "git",
36+
"url": "https://github.com/plotday/plot.git",
37+
"directory": "tools/github-issues"
38+
},
39+
"homepage": "https://plot.day",
40+
"bugs": {
41+
"url": "https://github.com/plotday/plot/issues"
42+
},
43+
"keywords": [
44+
"plot",
45+
"tool",
46+
"github",
47+
"issues",
48+
"project-management"
49+
],
50+
"publishConfig": {
51+
"access": "public"
52+
}
53+
}

0 commit comments

Comments
 (0)