Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR modernizes the deployment workflow by introducing a dry-run capability for validating Terraform changes before merging, and cleaning up the deployment workflow by replacing the third-party deployment tracking action with GitHub's native environment protection.
Changes:
- Added a new
deploy-dry-run.ymlworkflow that runs on pull requests and workflow_dispatch events to validate Terraform changes without applying them - Removed the
chrnorm/deployment-actionandchrnorm/deployment-statussteps from the deploy workflow in favor of native GitHub environment protection - Added
environment: prodto the deploy job to enable GitHub's native deployment tracking and protection features - Removed the
deployments: writepermission which is no longer needed
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.github/workflows/deploy.yml |
Removed third-party deployment tracking actions and associated deployments: write permission; added native environment: prod for better GitHub integration |
.github/workflows/deploy-dry-run.yml |
New workflow that runs Terraform plan on PRs to validate infrastructure changes without applying them; builds Lambda layer locally but skips S3 upload and terraform apply steps |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
koenmtb1
approved these changes
Feb 11, 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.
Added a new dry run workflow for terraform
Removed unnecessary deployment action