Merged
Conversation
Add icon/color for github marketplace
There was a problem hiding this comment.
Small, focused review: verified the metadata change for Marketplace presentation. One actionable suggestion provided to align with GitHub Actions metadata schema.
🤖 Automated review complete. Please react with 👍 or 👎 on the individual review comments to provide feedback on their usefulness.
action.yml
Outdated
| @@ -1,5 +1,7 @@ | |||
| name: "Augment Agent" | |||
| description: "AI-powered code assistance for GitHub pull requests using Augment's intelligent development tools" | |||
| icon: "zap" | |||
There was a problem hiding this comment.
For GitHub Actions metadata, icon and color should be nested under the top-level branding key rather than as top-level fields. This ensures the GitHub Marketplace correctly recognizes and renders them.
Current code:
icon: "zap"
color: "purple"Suggested improvement:
branding:
icon: "zap"
color: "purple"Notes:
purpleis one of the allowed colors (white, yellow, blue, green, orange, red, purple, gray-dark).zapis a valid Octicon name. You can reference the allowed set in GitHub's Actions metadata docs forbranding.
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.
Add GitHub Marketplace icon and color metadata
icon: "zap"to display a lightning bolt in the Marketplacecolor: "purple"to style the action’s badge/listingWhy
Impact
🤖 This description was generated automatically. Please react with 👍 if it's helpful or 👎 if it needs improvement.