Add Soft Systems Palette HTML reference#181
Conversation
Co-authored-by: JaclynCodes <218383634+JaclynCodes@users.noreply.github.com>
|
@copilot Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/iteration-status-emails.yml, line 72: The |
Co-authored-by: JaclynCodes <218383634+JaclynCodes@users.noreply.github.com>
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the Comment |
There was a problem hiding this comment.
Pull request overview
This PR adds a new HTML reference file for the Soft Systems color palette and fixes a bug in the iteration status email workflow related to task counting. The color palette HTML file provides a visual reference for the project's design colors, while the workflow fix prevents duplicate "0" outputs in task count reporting.
Changes:
- Added
soft-systems-palette.htmlwith six color swatches (Base, Slate, BoldnBloom, Mute, Deep, Alien) for visual reference - Fixed
iteration-status-emails.ymlworkflow to use|| trueinstead of|| echo "0"to prevent duplicate zero output when no tasks are found
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| soft-systems-palette.html | New HTML file displaying the Soft Systems color palette with styled swatches and color codes |
| .github/workflows/iteration-status-emails.yml | Fixed grep counting pattern to prevent duplicate "0" output in task count variables |
Add Soft Systems Palette HTML File
soft-systems-palette.htmlin the repository rootChanges
grep -c . || echo "0"would output "0\n0" when no matches foundgrep -c . || truewhich correctly outputs just "0" when no matches existOriginal prompt
This pull request was created from Copilot chat.
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.
Summary by cubic
Added soft-systems-palette.html at the repository root to showcase the Soft Systems color palette as labeled swatches with simple styling. Also fixed the iteration-status-emails workflow to count tasks correctly by using 'grep -c . || true' to avoid duplicate "0" output.
Written for commit 2a16a90. Summary will update on new commits.