Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR introduces initial CI workflows for Docker image builds and adds GitHub issue templates.
- Adds a pull-request workflow to build (but not push) Docker images
- Adds a push-to-main workflow to build and publish multi-arch Docker images
- Adds templates for feature requests and bug reports
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| .github/workflows/test.yaml | New workflow: builds Docker image on PR branches |
| .github/workflows/docker-main.yaml | New workflow: builds & pushes Docker on main |
| .github/ISSUE_TEMPLATE/feature_request.md | New feature request issue template |
| .github/ISSUE_TEMPLATE/bug.md | New bug report issue template |
Comments suppressed due to low confidence (3)
.github/workflows/test.yaml:1
- [nitpick] The workflow name "Docker Main" is identical in both CI files; consider renaming this PR workflow to something like "Docker PR" for clarity.
name: Docker Main
.github/workflows/docker-main.yaml:20
- You're building for linux/arm64 but haven't enabled QEMU under this job; add a
docker/setup-qemu-actionstep before Buildx to support cross-architecture builds.
- - name: Set up Docker Buildx
.github/ISSUE_TEMPLATE/feature_request.md:2
- [nitpick] The template filename
feature_request.mduses an underscore butbug.mddoes not; consider a consistent naming convention likebug_report.mdandfeature_request.mdorbug.mdandfeature.md.
name: Feature request
| context: . | ||
| file: ./Dockerfile | ||
| push: false | ||
| platforms: linux/amd64 |
There was a problem hiding this comment.
The PR build only targets linux/amd64; consider adding linux/arm64 here to catch ARM build issues early.
Suggested change
| platforms: linux/amd64 | |
| platforms: linux/amd64,linux/arm64 |
Contributor
There was a problem hiding this comment.
If we run into issues in the future, linux/amd64,linux/amd64/v2,linux/arm64 are the currently possible platforms in gcp.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
nickytonline
pushed a commit
that referenced
this pull request
Jun 11, 2025
GitHub 1. issue types 2. build docker for PR branch 3. build and publish main to docker hub --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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.
GitHub