mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Fixes the labeler (#9464)
This commit is contained in:
2
build/actions/AutoLabel/dist/index.js
vendored
2
build/actions/AutoLabel/dist/index.js
vendored
@@ -7863,7 +7863,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const actions_toolkit_1 = __webpack_require__(461);
|
const actions_toolkit_1 = __webpack_require__(461);
|
||||||
const tools = new actions_toolkit_1.Toolkit({
|
const tools = new actions_toolkit_1.Toolkit({
|
||||||
event: 'issue_comment',
|
event: 'pull_request',
|
||||||
secrets: ['GITHUB_TOKEN']
|
secrets: ['GITHUB_TOKEN']
|
||||||
});
|
});
|
||||||
const label = tools.inputs.label || 'Port Request';
|
const label = tools.inputs.label || 'Port Request';
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
import { Toolkit } from 'actions-toolkit';
|
import { Toolkit } from 'actions-toolkit';
|
||||||
|
|
||||||
const tools = new Toolkit({
|
const tools = new Toolkit({
|
||||||
event: 'issue_comment',
|
event: 'pull_request',
|
||||||
secrets: ['GITHUB_TOKEN']
|
secrets: ['GITHUB_TOKEN']
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user