comfy-pr 0.2.20 → 0.2.24
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/README.md +225 -225
- package/next-env.d.ts +5 -5
- package/package.json +10 -2
- package/src/Authors.ts +48 -0
- package/src/CMNodes.ts +60 -60
- package/src/CNRepos.ts +74 -72
- package/src/CRNodes.ts +27 -27
- package/src/CRPulls.ts +4 -4
- package/src/FORK_OWNER.ts +5 -5
- package/src/FORK_PREFIX.ts +5 -5
- package/src/FollowRules.ts +25 -25
- package/src/GIT_USEREMAIL.ts +5 -5
- package/src/GIT_USERNAME.ts +9 -9
- package/src/GithubIssueComments.ts +3 -3
- package/src/PushedBranch.ts +3 -3
- package/src/Totals.ts +9 -9
- package/src/TrackingPRs.ts +12 -12
- package/src/WorkerInstances.ts +89 -89
- package/src/addCommentAction.ts +65 -0
- package/src/analyzePullsStatus.ts +170 -134
- package/src/analyzeTotals.test.ts +5 -5
- package/src/analyzeTotals.ts +118 -120
- package/src/checkComfyActivated.ts +39 -39
- package/src/cli.ts +40 -40
- package/src/clone_modify_push_Branches.ts +21 -21
- package/src/createComfyRegistryPRsFromCandidates.ts +55 -55
- package/src/createComfyRegistryPullRequests.ts +22 -22
- package/src/createGithubForkForRepo.ts +37 -37
- package/src/createGithubPullRequest.ts +94 -94
- package/src/createIssueComment.ts +29 -29
- package/src/fetchCMNodes.ts +22 -22
- package/src/fetchComfyRegistryNodes.ts +11 -11
- package/src/fetchCurrentGeoInfo.ts +6 -6
- package/src/fetchRelatedPullWithComments.ts +15 -15
- package/src/fetchRepoDescriptionMap.ts +15 -15
- package/src/followRuleSchema.ts +76 -76
- package/src/getActivatedShell.ts +18 -18
- package/src/getBranchWorkingDir.ts +16 -16
- package/src/getRepoWorkingDir.ts +5 -5
- package/src/ghUser.ts +6 -6
- package/src/index.ts +22 -21
- package/src/initializeFollowRules.ts +26 -26
- package/src/makePublishBranch.ts +58 -58
- package/src/makeTomlBranch.ts +53 -53
- package/src/matchRelatedPulls.ts +60 -60
- package/src/muteInstances.ts +16 -16
- package/src/parseIssueUrl.ts +6 -6
- package/src/parseOwnerRepo.ts +33 -33
- package/src/parsePullUrl.ts +6 -6
- package/src/parsePullsState.ts +6 -6
- package/src/parseTitleBodyOfMarkdown.ts +8 -8
- package/src/postSlackMessage.ts +21 -21
- package/src/preload.ts +30 -30
- package/src/pullStatusFollowSchema.ts +12 -12
- package/src/readTemplateTitle.ts +11 -11
- package/src/showFollowRuleSet.ts +12 -0
- package/src/summaryLastPullComment.ts +8 -8
- package/src/tomlFillDescription.ts +17 -17
- package/src/updateAuthors.ts +7 -0
- package/src/updateAuthorsForGithub.ts +50 -0
- package/src/updateAuthorsFromCNRepo.ts +30 -0
- package/src/updateCMNodesDuplicationWarnings.ts +56 -56
- package/src/updateCMRepos.ts +27 -27
- package/src/updateCNRepos.ts +58 -58
- package/src/updateCNReposCRPullsComments.ts +40 -40
- package/src/updateCNReposInfo.ts +57 -57
- package/src/updateCNReposPRCandidate.ts +85 -85
- package/src/updateCNReposPulls.ts +28 -28
- package/src/updateCNReposPullsDashboard.ts +49 -49
- package/src/updateCNReposRelatedPulls.ts +25 -25
- package/src/updateCRNodes.ts +50 -50
- package/src/updateCRRepos.ts +26 -26
- package/src/updateComfyTotals.ts +43 -43
- package/src/updateFollowRuleSet.ts +127 -182
- package/src/updateOutdatedPullsTemplates.ts +160 -156
- package/src/updateSlackMessages.ts +43 -43
- package/tailwind.config.ts +20 -20
- package/CHANGELOG.md +0 -118
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
import { $fresh, $stale } from "@/packages/mongodb-pipeline-ts";
|
|
2
|
-
import { $filaten } from "@/packages/mongodb-pipeline-ts/$filaten";
|
|
3
|
-
import pMap from "p-map";
|
|
4
|
-
import { postSlackMessage } from "./postSlackMessage";
|
|
5
|
-
import { SlackMsgs } from "./slack/SlackMsgs";
|
|
6
|
-
|
|
7
|
-
export async function updateSlackMessages() {
|
|
8
|
-
// send
|
|
9
|
-
return await pMap(
|
|
10
|
-
SlackMsgs.find(
|
|
11
|
-
$filaten({
|
|
12
|
-
$or: [
|
|
13
|
-
{ status: { $exists: false } },
|
|
14
|
-
{
|
|
15
|
-
status: { $in: ["pending last", "error"] },
|
|
16
|
-
mtime: $stale("5m"), // try errors again after 5m
|
|
17
|
-
},
|
|
18
|
-
],
|
|
19
|
-
}),
|
|
20
|
-
),
|
|
21
|
-
async ({ _id, text, last_id: last, silent }) => {
|
|
22
|
-
await SlackMsgs.updateOne({ _id }, { $set: { status: "sending" } });
|
|
23
|
-
// max 5 msg per 30s
|
|
24
|
-
while (5 <= (await SlackMsgs.countDocuments({ mtime: $fresh("30s") })))
|
|
25
|
-
await new Promise((r) => setTimeout(r, 1000));
|
|
26
|
-
if (last) {
|
|
27
|
-
// check if last succ
|
|
28
|
-
const lastSent = await SlackMsgs.findOne({ _id: last });
|
|
29
|
-
if (lastSent?.status !== "sent") {
|
|
30
|
-
await SlackMsgs.updateOne({ _id }, { $set: { status: "pending last" } });
|
|
31
|
-
return;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
console.log("SLACK POST MSG: " + JSON.stringify(text));
|
|
35
|
-
if (silent) return await SlackMsgs.updateOne({ _id }, { $set: { status: "sent", mtime: new Date() } });
|
|
36
|
-
const sent = await postSlackMessage(text)
|
|
37
|
-
.then((e) => ({ ...e, error: undefined, status: "sent" as const }))
|
|
38
|
-
.catch((e) => ({ error: e.message ?? String(e), status: "error" as const }));
|
|
39
|
-
await SlackMsgs.updateOne({ _id }, { $set: { ...sent, mtime: new Date() } });
|
|
40
|
-
},
|
|
41
|
-
{ concurrency: 2 },
|
|
42
|
-
);
|
|
43
|
-
}
|
|
1
|
+
import { $fresh, $stale } from "@/packages/mongodb-pipeline-ts";
|
|
2
|
+
import { $filaten } from "@/packages/mongodb-pipeline-ts/$filaten";
|
|
3
|
+
import pMap from "p-map";
|
|
4
|
+
import { postSlackMessage } from "./postSlackMessage";
|
|
5
|
+
import { SlackMsgs } from "./slack/SlackMsgs";
|
|
6
|
+
|
|
7
|
+
export async function updateSlackMessages() {
|
|
8
|
+
// send
|
|
9
|
+
return await pMap(
|
|
10
|
+
SlackMsgs.find(
|
|
11
|
+
$filaten({
|
|
12
|
+
$or: [
|
|
13
|
+
{ status: { $exists: false } },
|
|
14
|
+
{
|
|
15
|
+
status: { $in: ["pending last", "error"] },
|
|
16
|
+
mtime: $stale("5m"), // try errors again after 5m
|
|
17
|
+
},
|
|
18
|
+
],
|
|
19
|
+
}),
|
|
20
|
+
),
|
|
21
|
+
async ({ _id, text, last_id: last, silent }) => {
|
|
22
|
+
await SlackMsgs.updateOne({ _id }, { $set: { status: "sending" } });
|
|
23
|
+
// max 5 msg per 30s
|
|
24
|
+
while (5 <= (await SlackMsgs.countDocuments({ mtime: $fresh("30s") })))
|
|
25
|
+
await new Promise((r) => setTimeout(r, 1000));
|
|
26
|
+
if (last) {
|
|
27
|
+
// check if last succ
|
|
28
|
+
const lastSent = await SlackMsgs.findOne({ _id: last });
|
|
29
|
+
if (lastSent?.status !== "sent") {
|
|
30
|
+
await SlackMsgs.updateOne({ _id }, { $set: { status: "pending last" } });
|
|
31
|
+
return;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
console.log("SLACK POST MSG: " + JSON.stringify(text));
|
|
35
|
+
if (silent) return await SlackMsgs.updateOne({ _id }, { $set: { status: "sent", mtime: new Date() } });
|
|
36
|
+
const sent = await postSlackMessage(text)
|
|
37
|
+
.then((e) => ({ ...e, error: undefined, status: "sent" as const }))
|
|
38
|
+
.catch((e) => ({ error: e.message ?? String(e), status: "error" as const }));
|
|
39
|
+
await SlackMsgs.updateOne({ _id }, { $set: { ...sent, mtime: new Date() } });
|
|
40
|
+
},
|
|
41
|
+
{ concurrency: 2 },
|
|
42
|
+
);
|
|
43
|
+
}
|
package/tailwind.config.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import daisyui from "daisyui";
|
|
2
|
-
import type { Config } from "tailwindcss";
|
|
3
|
-
const config: Config = {
|
|
4
|
-
content: [
|
|
5
|
-
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
6
|
-
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
7
|
-
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
8
|
-
],
|
|
9
|
-
theme: {
|
|
10
|
-
extend: {
|
|
11
|
-
backgroundImage: {
|
|
12
|
-
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
|
|
13
|
-
"gradient-conic": "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
|
|
14
|
-
},
|
|
15
|
-
},
|
|
16
|
-
},
|
|
17
|
-
plugins: [daisyui],
|
|
18
|
-
daisyui: { logs: false },
|
|
19
|
-
};
|
|
20
|
-
export default config;
|
|
1
|
+
import daisyui from "daisyui";
|
|
2
|
+
import type { Config } from "tailwindcss";
|
|
3
|
+
const config: Config = {
|
|
4
|
+
content: [
|
|
5
|
+
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
6
|
+
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
7
|
+
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
8
|
+
],
|
|
9
|
+
theme: {
|
|
10
|
+
extend: {
|
|
11
|
+
backgroundImage: {
|
|
12
|
+
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
|
|
13
|
+
"gradient-conic": "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
|
|
14
|
+
},
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
plugins: [daisyui],
|
|
18
|
+
daisyui: { logs: false },
|
|
19
|
+
};
|
|
20
|
+
export default config;
|
package/CHANGELOG.md
DELETED
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
-
|
|
5
|
-
### [0.2.20](https://github.com/drip-art/Comfy-Registry-PR/compare/v0.2.19...v0.2.20) (2024-07-02)
|
|
6
|
-
|
|
7
|
-
### Bug Fixes
|
|
8
|
-
|
|
9
|
-
- **comment-authors:** add ([847b14d](https://github.com/drip-art/Comfy-Registry-PR/commit/847b14d19b1c6bde1bb967c7ff8e7f44d93ac4eb))
|
|
10
|
-
- **comment-authors:** add ([d5ec4f1](https://github.com/drip-art/Comfy-Registry-PR/commit/d5ec4f1199d57b494e77c9613cc3789112be09e9))
|
|
11
|
-
- **misc:** 2024-06-28 meeting changes [@haohao](https://github.com/haohao) ([fe8aac6](https://github.com/drip-art/Comfy-Registry-PR/commit/fe8aac61d587c366a85f74d53b1572f0c74c0791))
|
|
12
|
-
- **misc:** 2024-06-28 meeting changes [@haohao](https://github.com/haohao) ([1cc72d5](https://github.com/drip-art/Comfy-Registry-PR/commit/1cc72d5127de0e7b0d3412706e4a6f0102a558e1))
|
|
13
|
-
|
|
14
|
-
### [0.2.19](https://github.com/drip-art/Comfy-Registry-PR/compare/v0.2.18...v0.2.19) (2024-06-28)
|
|
15
|
-
|
|
16
|
-
### [0.2.18](https://github.com/drip-art/Comfy-Registry-PR/compare/v0.2.17...v0.2.18) (2024-06-27)
|
|
17
|
-
|
|
18
|
-
### Bug Fixes
|
|
19
|
-
|
|
20
|
-
- **follow-rules:** add matcher fields into follow-rule ([4d7bbe7](https://github.com/drip-art/Comfy-Registry-PR/commit/4d7bbe7b941242cbb8edcd73ead6df61d26824df))
|
|
21
|
-
- **is-already-sent-totals-today:** notify if today is not already noti ([33cec0a](https://github.com/drip-art/Comfy-Registry-PR/commit/33cec0adde44612ca66213ce989d0d25f7549aec))
|
|
22
|
-
- **main:** env file tips ([02636f3](https://github.com/drip-art/Comfy-Registry-PR/commit/02636f3beb2efddcb2de69b3dece02816f542b49))
|
|
23
|
-
- **main:** update follow up rule matcher ([57302c3](https://github.com/drip-art/Comfy-Registry-PR/commit/57302c30a119f3275c4626d4f09123f6ac2d7aed))
|
|
24
|
-
- **toml-template-v3:** update template ts file ([24df794](https://github.com/drip-art/Comfy-Registry-PR/commit/24df794851cc6b7190bc0fb3c75ef02a76fed926))
|
|
25
|
-
|
|
26
|
-
### [0.2.17](https://github.com/drip-art/Comfy-Registry-PR/compare/v0.2.8...v0.2.17) (2024-06-24)
|
|
27
|
-
|
|
28
|
-
### Features
|
|
29
|
-
|
|
30
|
-
- **analyzePullsStatusPipeline:** also check comment in repo ([4ca14f6](https://github.com/drip-art/Comfy-Registry-PR/commit/4ca14f634fe2e0158ddc655f95d95992ccbcceb0))
|
|
31
|
-
- **analyzePullsStatusPipeline:** also check comment in repo ([62f055e](https://github.com/drip-art/Comfy-Registry-PR/commit/62f055e1c6ebc64b97061d4cdd4a7bba17e079ac))
|
|
32
|
-
- **main:** calculate authors ([9b0d719](https://github.com/drip-art/Comfy-Registry-PR/commit/9b0d719fa7be529e4b73d3c7a4189c7bc9da714f))
|
|
33
|
-
- **main:** calculate authors ([3299c3f](https://github.com/drip-art/Comfy-Registry-PR/commit/3299c3f0997eca73ad4121db6dd183d9b92b1a47))
|
|
34
|
-
- **sno-sep-apidoc:** init ([4c5a5e3](https://github.com/drip-art/Comfy-Registry-PR/commit/4c5a5e3f512696c5df4032cbd2ae5fddda99751c))
|
|
35
|
-
- **sno-sep-apidoc:** init ([994c57d](https://github.com/drip-art/Comfy-Registry-PR/commit/994c57deac01c7c3b11987fa736b73aeb45b9bb4))
|
|
36
|
-
- **update-follow-rule-set:** prematch comments ([34c98d5](https://github.com/drip-art/Comfy-Registry-PR/commit/34c98d55d0dd5973c457b23c44a21b576927a1c5))
|
|
37
|
-
- **update-follow-rule-set:** prematch comments ([7911528](https://github.com/drip-art/Comfy-Registry-PR/commit/7911528d3ce9cf8da3618ca1d44f26c6d5b532a0))
|
|
38
|
-
|
|
39
|
-
### Bug Fixes
|
|
40
|
-
|
|
41
|
-
- **(dashboard):** add index ([81e4cf3](https://github.com/drip-art/Comfy-Registry-PR/commit/81e4cf372329a84069c102c2b89dce78fbc71a98))
|
|
42
|
-
- **edit-toml-PR-message:** add v2 outdated template edit logic ([b7719b8](https://github.com/drip-art/Comfy-Registry-PR/commit/b7719b8c9916ccc4ba09be3ef9a57e4e696eed88))
|
|
43
|
-
- **edit-toml-PR-message:** add v2 outdated template edit logic ([594976d](https://github.com/drip-art/Comfy-Registry-PR/commit/594976d309476ff289aae6027a6d4d0ec9f8c360))
|
|
44
|
-
- **follow-comment:** fix existed comment logic ([bc43c22](https://github.com/drip-art/Comfy-Registry-PR/commit/bc43c223e2db97c8e55c2e286d5a64d9698cf853))
|
|
45
|
-
- **ghuser:** rename ([d0cce7e](https://github.com/drip-art/Comfy-Registry-PR/commit/d0cce7e06511457ea0db3fe1c673977b6b1179a4))
|
|
46
|
-
- **main:** made a fork demo for haohao ([ed58416](https://github.com/drip-art/Comfy-Registry-PR/commit/ed58416c11a7c63cc4356ffce2aee93b9fa3bb2b))
|
|
47
|
-
- **main:** move ts-toolbelt to devDep ([19a46cf](https://github.com/drip-art/Comfy-Registry-PR/commit/19a46cf6d21b4009a7f02213350aa4086427dcb9))
|
|
48
|
-
- **main:** move ts-toolbelt to devDep ([904dd13](https://github.com/drip-art/Comfy-Registry-PR/commit/904dd13da40c04570c17460ee8ccc96801c323c4))
|
|
49
|
-
- **main:** repo ago ([e2b007b](https://github.com/drip-art/Comfy-Registry-PR/commit/e2b007bec237ba904d8f88a6a522ba4429f6f10b))
|
|
50
|
-
- **main:** repo ago ([5633d0e](https://github.com/drip-art/Comfy-Registry-PR/commit/5633d0eeb77fa42859b66d7a351d66355ed17da1))
|
|
51
|
-
- **mongodb-pipeline-ts:** pipeline with syntax ([246144d](https://github.com/drip-art/Comfy-Registry-PR/commit/246144d3a95c3c163a251a20c904d77891985ea6))
|
|
52
|
-
- **mongodb-pipeline-ts:** pipeline with syntax ([20bf3fc](https://github.com/drip-art/Comfy-Registry-PR/commit/20bf3fc07e435857d80240465865d702f9b3dada))
|
|
53
|
-
- **pipeline:** fix type-helper ([c75e6ac](https://github.com/drip-art/Comfy-Registry-PR/commit/c75e6ac12fdb1b95b218c89f2ede2c5607b7ed23))
|
|
54
|
-
- **pkg:** types ([51beb33](https://github.com/drip-art/Comfy-Registry-PR/commit/51beb337ceee555ceb4827304edeed395129c179))
|
|
55
|
-
- **pull-status:** updated-at ([7196c3a](https://github.com/drip-art/Comfy-Registry-PR/commit/7196c3a9b492102e820f9bba2f8216906079155e))
|
|
56
|
-
- **src:** last-comment-at ([5c6b37e](https://github.com/drip-art/Comfy-Registry-PR/commit/5c6b37e7a33c72188da9c0d923cd97c43ad7e0e3))
|
|
57
|
-
- **src:** last-comment-at ([8050d4a](https://github.com/drip-art/Comfy-Registry-PR/commit/8050d4adc1dbc53b8a43e53edf9b9fca094b067f))
|
|
58
|
-
- **src:** outdate publishcr ([05b64bf](https://github.com/drip-art/Comfy-Registry-PR/commit/05b64bfabb7a3931416f5c2ed939763f346f9ad4))
|
|
59
|
-
- **src:** outdate publishcr ([8034c71](https://github.com/drip-art/Comfy-Registry-PR/commit/8034c718898f11b1af98644986cc8fda9671d0b2))
|
|
60
|
-
- **src:** peek result of runfollowruleset ([96886ec](https://github.com/drip-art/Comfy-Registry-PR/commit/96886ec832cab7c1b8333283d055417f7b808d54))
|
|
61
|
-
- **src:** peek result of runfollowruleset ([e81f9d5](https://github.com/drip-art/Comfy-Registry-PR/commit/e81f9d52a9aad7826898dc2e731db999abb04d3a))
|
|
62
|
-
- **src:** promise seq order ([cbd2534](https://github.com/drip-art/Comfy-Registry-PR/commit/cbd25342716efe0be9853fd599a40e93ac418228))
|
|
63
|
-
- **src:** promise seq order ([304fbfd](https://github.com/drip-art/Comfy-Registry-PR/commit/304fbfddfcf90e357cce6562b5125f987ea997ee))
|
|
64
|
-
- **src:** remove peeks ([4d4f2a9](https://github.com/drip-art/Comfy-Registry-PR/commit/4d4f2a9d981030bb21ea8c18cf84a617cec0eda7))
|
|
65
|
-
- **src:** remove peeks ([b2a7586](https://github.com/drip-art/Comfy-Registry-PR/commit/b2a7586c5bd6279c46fa58f74572246512475dd5))
|
|
66
|
-
- **src:** run action skip not matched user ([30a0219](https://github.com/drip-art/Comfy-Registry-PR/commit/30a0219a59f4edbb964352cd66688d6040ff6e16))
|
|
67
|
-
- **templates:** outdate publish.yaml ([0ded9e8](https://github.com/drip-art/Comfy-Registry-PR/commit/0ded9e87dd14e268fab13071a82de7efb8382790))
|
|
68
|
-
|
|
69
|
-
### [0.2.8](https://github.com/drip-art/Comfy-Registry-PR/compare/v0.2.7...v0.2.8) (2024-06-20)
|
|
70
|
-
|
|
71
|
-
### [0.2.7](https://github.com/drip-art/Comfy-Registry-PR/compare/v0.2.5...v0.2.7) (2024-06-20)
|
|
72
|
-
|
|
73
|
-
### Features
|
|
74
|
-
|
|
75
|
-
- **details:** show pr status details ([df100f1](https://github.com/drip-art/Comfy-Registry-PR/commit/df100f1706f66b5865e06b37bc8e0012c7ee14a8))
|
|
76
|
-
- **details:** show pr status details ([a8ce595](https://github.com/drip-art/Comfy-Registry-PR/commit/a8ce59567e95be57d85d6364212d14fd46233ee6))
|
|
77
|
-
- **dump:** api ok ([9f0e9f5](https://github.com/drip-art/Comfy-Registry-PR/commit/9f0e9f5c2c0577df01b9b8ab9f6d3a06bf6b533b))
|
|
78
|
-
- **dump:** api ok ([700fb33](https://github.com/drip-art/Comfy-Registry-PR/commit/700fb33efe1f445846ec3405a1cef25ee830ccfd))
|
|
79
|
-
- **dump:** build ok ([bc70604](https://github.com/drip-art/Comfy-Registry-PR/commit/bc706044d4e901140105bb1f065d653024bb1908))
|
|
80
|
-
- **dump:** build ok ([c42f399](https://github.com/drip-art/Comfy-Registry-PR/commit/c42f399ec79e3ea5e9b294e21ec4a56a3560e0b3))
|
|
81
|
-
- **feat-activate-in-bun:** got activated shell ([552ab4f](https://github.com/drip-art/Comfy-Registry-PR/commit/552ab4f2a14577786fc6a9a51d75bef5533be81b))
|
|
82
|
-
- **feat-activate-in-bun:** got activated shell ([5661ca9](https://github.com/drip-art/Comfy-Registry-PR/commit/5661ca9c2e9509f3b457a124927865ec45a083dc))
|
|
83
|
-
- **follow-up-rules:** editor ([a8003de](https://github.com/drip-art/Comfy-Registry-PR/commit/a8003deec8607f579715f8765ae46871f5150740))
|
|
84
|
-
- **follow-up-rules:** editor ([8555441](https://github.com/drip-art/Comfy-Registry-PR/commit/8555441d7a4d823ea020d91693d3fea02c5fd7e7))
|
|
85
|
-
- **follow:** rule editor ([db71370](https://github.com/drip-art/Comfy-Registry-PR/commit/db713706adb58ce8630b06d09b7120b296f2a032))
|
|
86
|
-
- **follow:** rule editor ([93c56c0](https://github.com/drip-art/Comfy-Registry-PR/commit/93c56c08fe1c0c9f6361964347276e78912019ba))
|
|
87
|
-
|
|
88
|
-
### Bug Fixes
|
|
89
|
-
|
|
90
|
-
- **follow-rule:** allow head match ([2ffe576](https://github.com/drip-art/Comfy-Registry-PR/commit/2ffe57675ea172ccc1fb45296cd2229a6b3171ab))
|
|
91
|
-
- **main:** adjust crpulls fresh span, enable r ([63369d3](https://github.com/drip-art/Comfy-Registry-PR/commit/63369d3ae79f573343fe54594a74f105634088fe))
|
|
92
|
-
- **main:** allow yaml update ([326b7a4](https://github.com/drip-art/Comfy-Registry-PR/commit/326b7a4bddb8ececd1617a0796d82f1fcb989143))
|
|
93
|
-
- **main:** candidates and error show ([93994ec](https://github.com/drip-art/Comfy-Registry-PR/commit/93994ec843e11909c37c2601baa0b72da141e6d6))
|
|
94
|
-
- **main:** candidates and error show ([49cccde](https://github.com/drip-art/Comfy-Registry-PR/commit/49cccde43c07023ec8506a75d7970d705efb275c))
|
|
95
|
-
- **main:** deprecate zx ([c27d1ef](https://github.com/drip-art/Comfy-Registry-PR/commit/c27d1efb6b305633f3577a013b1b9075f0a8146a))
|
|
96
|
-
- **main:** deprecate zx ([e72e335](https://github.com/drip-art/Comfy-Registry-PR/commit/e72e3357d7b6e476d83cabc7ff7b616d6d4237b9))
|
|
97
|
-
- **main:** optimize updateCNReposPulls index ([8416678](https://github.com/drip-art/Comfy-Registry-PR/commit/8416678a4817d1fa98ee53a92862e2a6beec8b46))
|
|
98
|
-
- **main:** optimize updateCNReposPulls index ([6321885](https://github.com/drip-art/Comfy-Registry-PR/commit/6321885f0c91d2ecad6defaf4f26f87193503d96))
|
|
99
|
-
- **main:** second round ([0b08f2a](https://github.com/drip-art/Comfy-Registry-PR/commit/0b08f2a343232dba1741376c12a91b6121eee7c9))
|
|
100
|
-
- **main:** second round ([83c791e](https://github.com/drip-art/Comfy-Registry-PR/commit/83c791e202d888e56f44a7c6bd65d89faeb89039))
|
|
101
|
-
- **main:** stage ([162bee0](https://github.com/drip-art/Comfy-Registry-PR/commit/162bee02999731fcb45e0d5fd01c9c4426e202a3))
|
|
102
|
-
- **main:** stage ([c930f6e](https://github.com/drip-art/Comfy-Registry-PR/commit/c930f6e7ea4b55d14b9a3f1909222e158d1c63a9))
|
|
103
|
-
- **main:** swagger ([96c6878](https://github.com/drip-art/Comfy-Registry-PR/commit/96c6878f5bb68f8540c845621c226d8867e24c94))
|
|
104
|
-
- **main:** swagger ([8c2b217](https://github.com/drip-art/Comfy-Registry-PR/commit/8c2b2170e37e0176f7a7194fbb57db553a1beaba))
|
|
105
|
-
- **misc:** fix vars ([501145a](https://github.com/drip-art/Comfy-Registry-PR/commit/501145af13966727b4df45c11bbffa3be71ae552))
|
|
106
|
-
- **misc:** fix vars ([14b0d6c](https://github.com/drip-art/Comfy-Registry-PR/commit/14b0d6c10c009ccac6b9276d8689142163f98d9f))
|
|
107
|
-
- **mongodb-pipeline-ts:** add satisfies ([a08c7f8](https://github.com/drip-art/Comfy-Registry-PR/commit/a08c7f8bae341beceacb4c974cb59e59bb951b0b))
|
|
108
|
-
- **mongodb-pipeline-ts:** expression ([2ad8563](https://github.com/drip-art/Comfy-Registry-PR/commit/2ad8563e5799a0ec2b069a1afe4332dd5c5023cc))
|
|
109
|
-
- **mongodb-pipeline-ts:** use partial for stage ([239802a](https://github.com/drip-art/Comfy-Registry-PR/commit/239802ae02d2581904890483aa95c54e2a11d996))
|
|
110
|
-
- **pipeline:** types use array-path ([fa3ba69](https://github.com/drip-art/Comfy-Registry-PR/commit/fa3ba6965a729a16a0f5858c2dc69230d6ecc644))
|
|
111
|
-
- **pipeline:** types use array-path ([647279c](https://github.com/drip-art/Comfy-Registry-PR/commit/647279c5a55c2719e1d269477e19c9dffc3723a4))
|
|
112
|
-
- **pipeline:** use PipelineLauncher ([4c3d37e](https://github.com/drip-art/Comfy-Registry-PR/commit/4c3d37e35436442a114847d902f6a204b6c8f042))
|
|
113
|
-
- **pr-comments:** value typo ([57a6dc4](https://github.com/drip-art/Comfy-Registry-PR/commit/57a6dc41b551cb797315c9d855fb629f8e98bd8f))
|
|
114
|
-
- **src:** simplify pipeline ([0ce3810](https://github.com/drip-art/Comfy-Registry-PR/commit/0ce3810b62a6be9444114fb204fde38b0ae336d0))
|
|
115
|
-
- **src:** simplify pipeline ([b0316b0](https://github.com/drip-art/Comfy-Registry-PR/commit/b0316b09cf9aa1bc4eeccb4e43502a53eaa3ae96))
|
|
116
|
-
- **src:** sort totals ([126977d](https://github.com/drip-art/Comfy-Registry-PR/commit/126977d2ab08e12ebc6e3e61edacb279d968fd57))
|
|
117
|
-
- **workflows:** run tests ([e8109b0](https://github.com/drip-art/Comfy-Registry-PR/commit/e8109b0cdd3e8f3433817f9218ae230243551cb1))
|
|
118
|
-
- **zx:** restore zx ([dd5bc17](https://github.com/drip-art/Comfy-Registry-PR/commit/dd5bc1700b64d68a0a08ca8c5ed3f72c997f3c9f))
|