@@ -1928,7 +1928,7 @@ class Issue {
19281928 }
19291929 `;
19301930 const response = yield this.octokit.graphql(query);
1931- const resource = response[" resource" ];
1931+ const resource = response[' resource' ];
19321932 const cards = (_a = resource.projectCards.nodes) !== null && _a !== void 0 ? _a : [];
19331933 // Project columns must exist, because this action only makes sense with a
19341934 // valid project
@@ -4422,25 +4422,6 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
44224422 });
44234423};
44244424Object.defineProperty(exports, "__esModule", { value: true });
4425- /**
4426- * Actions
4427- *
4428- * - New issues will have the "triage" label auto-assigned (if one is configured)
4429- * - Issues with the "triage" label will be added to the Triage column (if one
4430- * is configured)
4431- * - Issues in the triage column will be moved to todo when the triage label is removed
4432- * - Newly assigned issues that are in todo or triage go to the working column
4433- * - todo issues that are assigned go to the working column
4434- * - When a PR is opened that links to an issue, that issue will be moved to
4435- * the working column
4436- * - working issues that are de-assigned go back to todo
4437- * - Issues that are on the board and are closed go to done
4438- * - Closed issues on the board that are re-opened go back to working
4439- * - When issues are added to a column, they should be added in priority order,
4440- * with priority-high at the top and priority-low at the bottom.
4441- * - Only issues go on the board, not PRs. PRs will be accessible through issue
4442- * links.
4443- */
44444425const core_1 = __webpack_require__(470);
44454426const github_1 = __webpack_require__(469);
44464427const issue_1 = __webpack_require__(163);
@@ -4586,7 +4567,7 @@ function main() {
45864567 issue.isInColumn(config.workingColumnName) &&
45874568 config.todoColumnName &&
45884569 !issue.isAssigned() &&
4589- !issue.linkedPrs.some(pr => !pr.closed)) {
4570+ !issue.linkedPrs.some((pr) => !pr.closed)) {
45904571 core_1.info(`Moving issue ${issue.number} to todo column`);
45914572 yield issue.moveToColumn(config.todoColumnName);
45924573 }
@@ -25873,7 +25854,6 @@ function getAction(context) {
2587325854}
2587425855exports.getAction = getAction;
2587525856function getConfig() {
25876- const triagedLabels = core_1.getInput('triaged-labels');
2587725857 const config = {
2587825858 token: core_1.getInput('github-token'),
2587925859 projectName: core_1.getInput('project'),
@@ -25883,8 +25863,6 @@ function getConfig() {
2588325863 triageColumnName: core_1.getInput('triage-column'),
2588425864 // Label that will be applied to triage issues
2588525865 triageLabel: core_1.getInput('triage-label'),
25886- // Labels that indicate an issue has been triaged
25887- triagedLabels: triagedLabels ? triagedLabels.split(/\s*,\s*/) : null,
2588825866 // Column for "ready" issues
2588925867 todoColumnName: core_1.getInput('todo-column'),
2589025868 // Column for "in-progress" issues
0 commit comments