Skip to content

Commit f88b8a0

Browse files
authored
Merge pull request #145 from github/edburns/fix-assignee-mechanism
Fix assignee mechanism.
2 parents 3badfa8 + e05c209 commit f88b8a0

3 files changed

Lines changed: 18 additions & 19 deletions

File tree

.github/workflows/reference-impl-sync.lock.yml

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/reference-impl-sync.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ tools:
2424
safe-outputs:
2525
create-issue:
2626
title-prefix: "[reference-impl-sync] "
27-
assignees: [copilot-swe-agent]
2827
labels: [reference-impl-sync]
2928
expires: 6
3029
close-issue:

.github/workflows/reference-impl-sync.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,16 +129,16 @@ jobs:
129129
130130
Follow the [agentic-merge-reference-impl](.github/prompts/agentic-merge-reference-impl.prompt.md) prompt to port these changes to the Java SDK."
131131
132-
# Create the issue and assign to Copilot coding agent
132+
# Create the issue with the label; the Copilot coding agent picks up
133+
# unassigned issues that carry the configured label.
133134
ISSUE_URL=$(gh issue create \
134135
--repo "$REPO" \
135136
--title "Reference implementation sync: ${COMMIT_COUNT} new commits (${DATE})" \
136137
--body "$BODY" \
137-
--label "reference-impl-sync" \
138-
--assignee "copilot-swe-agent")
138+
--label "reference-impl-sync")
139139
140140
echo "issue_url=$ISSUE_URL" >> "$GITHUB_OUTPUT"
141-
echo "✅ Issue created and assigned to Copilot coding agent: $ISSUE_URL"
141+
echo "✅ Issue created with label for Copilot coding agent: $ISSUE_URL"
142142
143143
- name: Summary
144144
if: always()

0 commit comments

Comments
 (0)