@lonca/baron-adapter-github 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +12 -0
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -119,6 +119,18 @@ function createGithubTransport(options) {
|
|
|
119
119
|
"NOT_SUPPORTED"
|
|
120
120
|
);
|
|
121
121
|
},
|
|
122
|
+
async listIterations() {
|
|
123
|
+
throw new BaronError(
|
|
124
|
+
"GitHub issues have no native iterations/sprints; handled by the gap policy, not the transport.",
|
|
125
|
+
"NOT_SUPPORTED"
|
|
126
|
+
);
|
|
127
|
+
},
|
|
128
|
+
async setIteration() {
|
|
129
|
+
throw new BaronError(
|
|
130
|
+
"GitHub issues have no native iterations/sprints; handled by the gap policy, not the transport.",
|
|
131
|
+
"NOT_SUPPORTED"
|
|
132
|
+
);
|
|
133
|
+
},
|
|
122
134
|
async queryIssues(query) {
|
|
123
135
|
const stateValue = query.target?.[TARGET.STATE];
|
|
124
136
|
const label = query.target?.[TARGET.LABEL];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lonca/baron-adapter-github",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"octokit": "^5.0.5",
|
|
19
|
-
"@lonca/baron-core": "0.
|
|
19
|
+
"@lonca/baron-core": "0.6.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@types/node": "^22.0.0",
|
|
23
|
-
"@lonca/baron-conformance": "0.
|
|
23
|
+
"@lonca/baron-conformance": "0.6.0"
|
|
24
24
|
},
|
|
25
25
|
"description": "Baron adapter for GitHub: issues, scm, ci, deploy.",
|
|
26
26
|
"keywords": [
|