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:
Tadas Labudis
2026-03-09 23:44:35 +00:00
committed by GitHub
parent 15d1720375
commit cf4e33e1fd
3 changed files with 4 additions and 4 deletions

View File

@@ -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 }
}
}
```