Conversation
added 4 commits
April 30, 2026 13:07
…e dotnet from terraform. move dotnet code into dotnet location, and add terraform + initial scaffold
…uns terraform plan if tf changes. runs dotnet test always. fails pr if status check fails (either of depedent)
…plan job level. Add new job - Zizmor security scan.
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.
This pull request introduces several improvements and refactors to the CI/CD workflow, project structure, and developer tooling. The main highlights are a more modular and efficient GitHub Actions workflow, restructuring of the .NET solution files, and enhancements for security and automation.
CI/CD Workflow Improvements:
.github/workflows/pr-validation.ymlto split validation into multiple jobs: path-based filtering, Zizmor security scan, Terraform plan, .NET tests, and a final status check. Each job now uses more restrictive permissions and sparse checkouts for efficiency and security..NET Solution Structure Changes:
TheSexy6BotWorker.slnand replaced it with a simplifiedTheSexy6BotWorker.slnxthat points to the new project location undersrc/dotnet/. All workflow references to the solution file have been updated accordingly. [1] [2] [3]Developer Tooling:
.vscode/settings.jsonfile to auto-approve Terraform commands in the VS Code terminal, streamlining the developer experience.Security and Best Practices:
persist-credentials: falseset to reduce the risk of credential leakage. [1] [2] [3]Summary of Most Important Changes:
CI/CD Workflow Enhancements:
.github/workflows/pr-validation.yml).github/workflows/docker-ci.txt) [1] [2] [3].NET Solution and Build Updates:
.slnfile and switched to.slnxformat, updating project paths to reflect the new directory structure undersrc/dotnet/. All workflow steps now reference the new solution file. (TheSexy6BotWorker.sln,TheSexy6BotWorker.slnx,.github/workflows/pr-validation.yml) [1] [2] [3]Developer Experience:
.vscode/settings.json)Security Improvements: