ci: confirm Docker image steps are retained after pipeline simplification - #1
Merged
AlexanderJ-Carter merged 2 commits intoMar 15, 2026
Merged
Conversation
Co-authored-by: AlexanderJ-Carter <121274570+AlexanderJ-Carter@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Refactor pipeline to remove non-essential contributors
chore(ci): strip contributor steps and dead-code from CI workflow
Mar 15, 2026
Copilot
AI
changed the title
chore(ci): strip contributor steps and dead-code from CI workflow
ci: confirm Docker image steps are retained after pipeline simplification
Mar 15, 2026
AlexanderJ-Carter
marked this pull request as ready for review
March 15, 2026 11:58
There was a problem hiding this comment.
Pull request overview
This PR simplifies the GitHub Actions CI workflow by removing contributor-image generation/update steps and deleting a large block of commented-out Docker publishing steps.
Changes:
- Removed the “Generate Contributors Images” and “Modify contributors.ejs” steps from the CI workflow.
- Stopped copying
CONTRIBUTORS.svginto the.deployoutput. - Deleted legacy commented-out Docker build/publish steps at the end of the workflow.
Comments suppressed due to low confidence (1)
.github/workflows/ci.yml:34
- These steps reference third-party actions using a mutable branch ref (
@main). That makes CI behavior non-reproducible and increases supply-chain risk if the upstream action changes unexpectedly. Prefer pinning to a released tag (e.g.@vX) or, ideally, a commit SHA, and then periodically update via Renovate/Dependabot.
- name: Create Tag
id: create_tag
uses: jaywcjlove/create-tag-action@main
continue-on-error: true
with:
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
25
to
29
| - name: Build Linux Command | ||
| run: | | ||
| npm install | ||
| npm run dash | ||
| if [ -f CONTRIBUTORS.svg ]; then cp CONTRIBUTORS.svg .deploy; fi | ||
|
|
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.
Following the previous pipeline cleanup (contributor steps removed), confirmed that all active Docker image build and push steps are already preserved — no changes required.
Current state (already correct)
Set up Docker Buildx→Login to Docker Hub→Build and push image:latest+Build and push image:tagsall remain in the workflowdockerCLI blocks were removed in the prior cleanup, not the active Buildx stepsDOCKER_USER/DOCKER_PASSWORDsecrets are absent (continue-on-error: true)📍 Connect Copilot coding agent with Jira, Azure Boards or Linear to delegate work to Copilot in one click without leaving your project management tool.