Auto-create GitHub issues on critical vulnerability findings#8
Merged
asiridalugoda merged 1 commit intomainfrom Apr 1, 2026
Merged
Conversation
Explains the auto-issue-creation feature, configuration options, authentication setup for CI and local use, and the end-to-end flow. https://claude.ai/code/session_01TV3VDTvBkASszWGhMCCkUC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
integrations.github_issuesin.releaseguard.yml— acts as a feature flag that can be enabled per-repo pipelineFlow
What's included
internal/issue/github.go—GitHubCreatorthat filters findings by severity, builds rich issue bodies, and calls the GitHub Issues APIinternal/issue/github_test.go— unit tests covering title/body generation, filtering, API success/error pathsinternal/config/schema.go—GitHubIssuesConfigstruct underIntegrationsConfig(enabled, severities, labels, assignees)README.md— new "GitHub Issue Integration" section with config, auth, and usage docsFuture
The
integrationsconfig block is designed to be extensible for other issue trackers (Jira, Linear, etc.).Test plan
go test ./internal/issue/...)golangci-lint run ./internal/issue/...)https://claude.ai/code/session_01TV3VDTvBkASszWGhMCCkUC