Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions pkg/cli/workflows/test-copilot-assign-to-agent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
on:
workflow_dispatch:
permissions:
contents: read
issues: read
engine: copilot
safe-outputs:
assign-to-agent:
max: 1
---

# Test Copilot Assign To Agent

Test the `assign_to_agent` safe output type with the Copilot engine.

## Task

Assign issue #1 to the copilot agent in this repository.

Output results in JSONL format using the `assign_to_agent` tool.
21 changes: 21 additions & 0 deletions pkg/cli/workflows/test-copilot-assign-to-user.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
on:
workflow_dispatch:
permissions:
contents: read
issues: read
engine: copilot
safe-outputs:
assign-to-user:
max: 1
---

# Test Copilot Assign To User

Test the `assign_to_user` safe output type with the Copilot engine.

## Task

Assign issue #1 to user "octocat" in this repository.

Output results in JSONL format using the `assign_to_user` tool.
21 changes: 21 additions & 0 deletions pkg/cli/workflows/test-copilot-close-discussion.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
on:
workflow_dispatch:
permissions:
contents: read
discussions: read
engine: copilot
safe-outputs:
close-discussion:
max: 1
---

# Test Copilot Close Discussion

Test the `close_discussion` safe output type with the Copilot engine.

## Task

Close discussion #1 in this repository.

Output results in JSONL format using the `close_discussion` tool.
21 changes: 21 additions & 0 deletions pkg/cli/workflows/test-copilot-unassign-from-user.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
on:
workflow_dispatch:
permissions:
contents: read
issues: read
engine: copilot
safe-outputs:
unassign-from-user:
max: 1
---

# Test Copilot Unassign From User

Test the `unassign_from_user` safe output type with the Copilot engine.

## Task

Unassign user "octocat" from issue #1 in this repository.

Output results in JSONL format using the `unassign_from_user` tool.
Loading