Merged
Conversation
dsyme
approved these changes
Aug 15, 2025
pelikhan
added a commit
that referenced
this pull request
Sep 6, 2025
* Add engine field support to included workflows with strict validation (#84) * Add AI Inference with GitHub Models agentic workflow using actions/ai-inference (#85) * Initial plan * Create AI Inference with GitHub Models agentic workflow - Add ai-inference-github-models.md workflow using actions/ai-inference - Implement multi-model support with gpt-4o-mini as default - Add context-aware prompts for issues and pull requests - Include safe outputs for automated comment posting - Create usage examples and documentation - Successfully compile and test the workflow Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> * Address PR review feedback: move docs, fix permissions, use prompt-file, remove PR support Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> * Remove documentation file and add comprehensive comments to workflow file Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> * Address PR feedback: simplify workflow with single issue input and fixed model Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> * Address PR feedback: rename input to issue_number, add GitHub expression, remove documentation Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> * Handle both issue events and workflow_dispatch inputs in AI inference prompt - Added dynamic prompt creation step that determines issue number based on event type - Uses github.event.issue.number for automatic issue events - Uses github.event.inputs.issue_number for manual workflow_dispatch events - Addresses comment requesting OR condition for both input sources Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> * Revert previous commit as requested Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> Co-authored-by: Peli de Halleux <pelikhan@users.noreply.github.com> * Enhance AI Inference workflow with content sanitization and improved output formatting * Add create-security-report safe output to custom engine test workflow (#86) * Add agent output JSON storage and upload to AI Inference workflow * Sort `with` section keys for stable output in engine step conversion (#87) * Initial plan * Sort with section keys for stable output in engine step conversion Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
4 tasks
github-actions bot
added a commit
that referenced
this pull request
Dec 25, 2025
Addresses CodeQL alerts #85, #86, #87 (js/incomplete-multi-character-sanitization) The vulnerability occurs when using .replace() to remove multi-character patterns like HTML comments - a single pass can reintroduce dangerous sequences. For example, "<!--<!--comment-->-->" becomes "<!---->" after one replacement, still containing comment markers. Fix: Apply replacement repeatedly until no more matches are found. This ensures all nested/overlapping patterns are fully removed. Modified files: - actions/setup/js/sanitize_content_core.cjs: removeXmlComments() - actions/setup/js/runtime_import.cjs: removeXMLComments() 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
pelikhan
pushed a commit
that referenced
this pull request
Dec 25, 2025
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.
No description provided.