Skip to content

Commit

Permalink
Add changeset and fix string concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottGuymer committed Nov 7, 2024
1 parent b47c41f commit 9f30cff
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@philips-software/backstage-plugin-github-actions-marketplace': major
---

Initial Release
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ export const EntityGitHubActionUsageCard = () => {
}}
>
<Typography variant="body2">
Learn more on how to use this GitHub Action by reviewing different
implementations in {{ owner }}`:
{`Learn more on how to use this GitHub Action by reviewing different
implementations in ${owner}`}
</Typography>
<LinkButton
color="primary"
Expand All @@ -42,7 +42,7 @@ export const EntityGitHubActionUsageCard = () => {
classes={{ root: classes.button }}
to={link({ owner: owner, name: repo })}
>
Examples on {{ owner }}
{`Examples on ${owner}`}
</LinkButton>
</CardContent>
</Card>
Expand Down

0 comments on commit 9f30cff

Please sign in to comment.