mirror of
https://gitea.com/Lydanne/issues-helper.git
synced 2025-08-19 18:25:58 +08:00
fix: console
This commit is contained in:
@@ -19,7 +19,6 @@ import {
|
||||
|
||||
let ICE: IIssueCoreEngine;
|
||||
export function initAdvancedICE(_ICE: IIssueCoreEngine) {
|
||||
console.log(_ICE)
|
||||
ICE = _ICE;
|
||||
}
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { Octokit } from '@octokit/rest';
|
||||
import * as core from '@actions/core';
|
||||
import * as core from '../core';
|
||||
import { EEmoji } from '../shared';
|
||||
import { TEmoji, TLockReasons, TUpdateMode, TIssueState, TUserPermission } from '../types';
|
||||
import { IIssueBaseInfo, IIssueCoreEngine, IListIssuesParams, TIssueList, TIssueInfo, TCommentList } from './types';
|
||||
|
@@ -9,10 +9,8 @@ import type { TAction } from './types';
|
||||
async function main() {
|
||||
try {
|
||||
const actions = core.getInput('actions', { required: true });
|
||||
console.log(actions)
|
||||
const IHE = new IssueHelperEngine(github.context);
|
||||
for (const action of dealStringToArr(actions)) {
|
||||
console.log(action)
|
||||
await IHE.doExeAction(action as TAction);
|
||||
}
|
||||
core.baseInfo(`\n${THANKS}`);
|
||||
|
Reference in New Issue
Block a user