From 313f22e4f47e8936f497022504e069e64ec64aba Mon Sep 17 00:00:00 2001 From: merlin Date: Tue, 19 May 2026 23:27:06 +0800 Subject: [PATCH] chore(issue-feed): remove deprecated backward-compat inputs All 8 callers have been migrated to @main and no longer pass issue_labels or project_group_id. Remove the deprecated optional inputs and their associated no-op blocks. Verified: grep for issue_labels, project_group_id, ISSUE_LABELS, PROJECT_GROUP_ID, labels_part, proj_gid, require_group_id all return empty in the resulting file. --- .github/workflows/octo-issue-feed.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/octo-issue-feed.yml b/.github/workflows/octo-issue-feed.yml index 4cbf211..1efb40c 100644 --- a/.github/workflows/octo-issue-feed.yml +++ b/.github/workflows/octo-issue-feed.yml @@ -29,20 +29,6 @@ on: required: false default: 'https://im.deepminer.com.cn/api' description: 'Octo IM API base URL. Only the production endpoint is allowlisted. Any other value will cause the workflow to fail.' - # ── Deprecated inputs kept for backward compatibility ────────────────── - # Callers still passing these (using the old @v1 reusable) will not break; - # the values are accepted and silently ignored. Remove from callers first, - # then remove from this reusable in a follow-up PR. - issue_labels: - type: string - required: false - default: '[]' - description: 'DEPRECATED — no longer used. Remove from callers before dropping here.' - project_group_id: - type: string - required: false - default: '' - description: 'DEPRECATED — no longer used. Remove from callers before dropping here.' secrets: OCTO_BOT_TOKEN: required: true