Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR updates the CI/CD workflow configuration by adding a pull_request trigger to the workflow events.
- Added pull_request event under the workflow triggers in the CI/CD configuration
Files not reviewed (19)
- 8.0-nginx-prod/Dockerfile: Language not supported
- 8.0-nginx-prod/supervisor.conf: Language not supported
- 8.0-nginx/Dockerfile: Language not supported
- 8.0-nginx/supervisor.conf: Language not supported
- 8.1-nginx-prod/Dockerfile: Language not supported
- 8.1-nginx-prod/supervisor.conf: Language not supported
- 8.1-nginx/Dockerfile: Language not supported
- 8.1-nginx/supervisor.conf: Language not supported
- 8.2-nginx-prod/Dockerfile: Language not supported
- 8.2-nginx-prod/supervisor.conf: Language not supported
- 8.2-nginx/Dockerfile: Language not supported
- 8.2-nginx/supervisor.conf: Language not supported
- 8.3-nginx-prod/Dockerfile: Language not supported
- 8.3-nginx-prod/supervisor.conf: Language not supported
- 8.3-nginx/Dockerfile: Language not supported
- 8.3-nginx/supervisor.conf: Language not supported
- 8.4-nginx-prod/Dockerfile: Language not supported
- 8.4-nginx-prod/supervisor.conf: Language not supported
- 8.4-nginx/Dockerfile: Language not supported
fabriciojs
approved these changes
Jan 25, 2026
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 19 out of 19 changed files in this pull request and generated 10 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
fabriciojs
approved these changes
Jan 25, 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.
This pull request introduces improvements to the CI/CD workflow and simplifies the Docker images for multiple PHP-Nginx versions by replacing manual installation of
supervisordwith package manager installation and adding a newsupervisor.confconfiguration file.CI/CD Workflow Updates:
pull_requestas a trigger in the CI/CD workflow configuration to enable testing for pull requests. (.github/workflows/ci-cd.yml, .github/workflows/ci-cd.ymlR6)Dockerfile Simplifications:
supervisordwith its installation via the package manager (apk add --no-cache nginx supervisord) across all PHP-Nginx versions (8.0,8.1,8.2,8.3,8.4) for both-prodand non--prodvariants. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]Supervisor Configuration:
supervisor.conffile for all PHP-Nginx versions (8.0,8.1,8.2,8.3,8.4) to configuresupervisordwith logging to stdout and to run in no-daemon mode. This ensures better integration with containerized environments.