-
Notifications
You must be signed in to change notification settings - Fork 0
Update "PixelGenius Platform" from zeroheight #206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
f0115d5
Update PixelGenius Platform from zeroheight
99f00d2
Update PixelGenius Platform from zeroheight
8140d0b
feat: update github actions
mrbadri 03530c1
Update build-design-system.yml
mrbadri 70e6bcb
Update build-design-system.yml
mrbadri ca33776
Update build-design-system.yml
mrbadri ef4c944
Update build-design-system.yml
mrbadri 934408a
Update build-design-system.yml
mrbadri 4c29bf2
chore: update design system tokens
mrbadri 8e2cb6b
Update build-design-system.yml
mrbadri f566758
Update packages/design-system/src/tokens/token_palette_primitive.json
mrbadri 21f7053
chore: update design system tokens
mrbadri File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the auto-commit step syntax.
The current configuration has a syntax error. The step should either be a named step with both
nameanduses, or just a step withuses.Apply this diff to fix the syntax:
📝 Committable suggestion
🧰 Tools
🪛 actionlint (1.7.4)
50-50: step must run script with "run" section or run action with "uses" section
(syntax-check)
🛠️ Refactor suggestion
Add configuration for the auto-commit action.
The auto-commit action is missing essential configuration such as commit message and file patterns. This is important for tracking token updates from zeroheight.
Add configuration like this:
- name: Check for changes uses: stefanzweifel/git-auto-commit-action@v5 + with: + commit_message: "chore: update design system tokens from zeroheight" + file_pattern: 'packages/design-system/src/tokens/**'🧰 Tools
🪛 actionlint (1.7.4)
50-50: step must run script with "run" section or run action with "uses" section
(syntax-check)