mirror of
https://github.com/github/awesome-copilot.git
synced 2026-03-12 20:25:11 +00:00
fix: improve github-issues skill trigger phrases and fix GraphQL dependency examples (#946)
- Add dependency/blocking trigger phrases to skill description so the skill activates on requests like 'link issues', 'add dependency', 'blocked by', and 'blocking' - Fix incorrect GraphQL return field in dependencies.md: blockedByIssue does not exist on AddBlockedByPayload; the correct field is blockingIssue Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -44,7 +44,7 @@ mutation {
|
||||
issueId: "BLOCKED_ISSUE_NODE_ID"
|
||||
blockingIssueId: "BLOCKING_ISSUE_NODE_ID"
|
||||
}) {
|
||||
blockedByIssue { number title }
|
||||
blockingIssue { number title }
|
||||
}
|
||||
}
|
||||
```
|
||||
@@ -56,7 +56,7 @@ mutation {
|
||||
issueId: "BLOCKED_ISSUE_NODE_ID"
|
||||
blockingIssueId: "BLOCKING_ISSUE_NODE_ID"
|
||||
}) {
|
||||
blockedByIssue { number title }
|
||||
blockingIssue { number title }
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user