From 0abcf0975af2b02350bf1fe5d2acdb007ff7cefc Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 1 May 2026 14:40:31 +0000 Subject: [PATCH] Remove project copying from port-issue workflow Agent-Logs-Url: https://github.com/rancher/k3k/sessions/607e0dcd-08b9-4c39-897d-b62888908056 Co-authored-by: samjustus <95646164+samjustus@users.noreply.github.com> --- .github/workflows/port-issue.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/port-issue.yml b/.github/workflows/port-issue.yml index 3a9a5ac..7111d07 100644 --- a/.github/workflows/port-issue.yml +++ b/.github/workflows/port-issue.yml @@ -85,11 +85,6 @@ jobs: additional_cmd+=("--label") additional_cmd+=("${ORIGINAL_LABELS}") fi - ORIGINAL_PROJECT=$(gh issue view -R ${GITHUB_REPOSITORY} ${ORIGINAL_ISSUE_NUMBER} --json projectItems --jq '.projectItems[].title') - if [ -n "$ORIGINAL_PROJECT" ]; then - additional_cmd+=("--project") - additional_cmd+=("${ORIGINAL_PROJECT}") - fi ASSIGNEES=$(echo "${ORIGINAL_ISSUE}" | jq -r .assignees[].login) if [ -n "$ASSIGNEES" ]; then echo "Checking if assignee is member before assigning"