feat(ci): Add Fortress Code Reviewer security scan workflow#5639
Merged
jam-jee merged 1 commit intoaws:masterfrom Mar 18, 2026
Merged
feat(ci): Add Fortress Code Reviewer security scan workflow#5639jam-jee merged 1 commit intoaws:masterfrom
jam-jee merged 1 commit intoaws:masterfrom
Conversation
Add GitHub Actions workflow to run Fortress Code Reviewer security scan on every PR against the master branch. The workflow: - Triggers on pull_request_target against master - Performs collaborator check (auto-approve for collaborators, manual approval for external contributors) - Configures AWS credentials via OIDC - Triggers the sagemaker-python-sdk-ci-fortress-scan CodeBuild project The CodeBuild project installs Fortress at runtime from S3-hosted wheels and uses Bedrock (Claude) to analyze code for security vulnerabilities. --- X-AI-Prompt: Add Fortress security scan GitHub workflow for PR scanning X-AI-Tool: Kiro
papriwal
approved these changes
Mar 18, 2026
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.
What
Add a GitHub Actions workflow to run Fortress Code Reviewer security scan on every PR against the master branch.
Why
Enable automated AI-powered security vulnerability scanning on every PR to catch security issues before merge. Fortress uses AWS Bedrock (Claude) to analyze code for vulnerabilities.
How
The workflow (
.github/workflows/fortress-scan.yml):pull_request_targetagainstmastersagemaker-python-sdk-ci-fortress-scanCodeBuild projectThe CodeBuild project (deployed via SageMakerMLFPySDKInfraCDK):
--disable-memory --disable-reasoningfor CI speedTesting