chatroom-cli 1.38.7 → 1.38.8
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 +3 -6
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -75157,8 +75157,7 @@ async function getCommitStatusChecks(cwd, ref) {
|
|
|
75157
75157
|
const modernEntries = checkRunsData.check_runs.map((cr) => ({
|
|
75158
75158
|
name: cr.name,
|
|
75159
75159
|
status: cr.status,
|
|
75160
|
-
conclusion: cr.conclusion
|
|
75161
|
-
source: "check-run"
|
|
75160
|
+
conclusion: cr.conclusion
|
|
75162
75161
|
}));
|
|
75163
75162
|
const legacyEntries = legacyStatuses.map((s) => {
|
|
75164
75163
|
let status3;
|
|
@@ -75180,9 +75179,7 @@ async function getCommitStatusChecks(cwd, ref) {
|
|
|
75180
75179
|
return {
|
|
75181
75180
|
name: s.context,
|
|
75182
75181
|
status: status3,
|
|
75183
|
-
conclusion
|
|
75184
|
-
source: "status",
|
|
75185
|
-
url: s.target_url ?? null
|
|
75182
|
+
conclusion
|
|
75186
75183
|
};
|
|
75187
75184
|
});
|
|
75188
75185
|
const merged = [...modernEntries, ...legacyEntries];
|
|
@@ -79334,5 +79331,5 @@ program2.hook("preAction", async (_thisCommand, actionCommand) => {
|
|
|
79334
79331
|
});
|
|
79335
79332
|
program2.parse();
|
|
79336
79333
|
|
|
79337
|
-
//# debugId=
|
|
79334
|
+
//# debugId=36B037430550455164756E2164756E21
|
|
79338
79335
|
//# sourceMappingURL=index.js.map
|