Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
fix: update GitHub release workflow to use generated token (#84) 6ffd518
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts committed Jul 26, 2024
1 parent f06a99a commit 524fc35
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion injectables/InsightCardService.html
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ <h3 id="inputs">

const { pageName, repos, contributors } &#x3D; insightData ? insightData : await this.getInsightData(insightId);

const template &#x3D; html(insightCardTemplate(pageName, insightContributors(contributors), insightRepos(repos, 3)));
const template &#x3D; html(insightCardTemplate(pageName, insightContributors(contributors.filter(contributor &#x3D;&gt; !contributor.includes(&quot;[bot]&quot;))), insightRepos(repos, 3)));

const interArrayBuffer &#x3D; await fs.readFile(&quot;node_modules/@fontsource/inter/files/inter-all-400-normal.woff&quot;);
const interArrayBufferMedium &#x3D; await fs.readFile(&quot;node_modules/@fontsource/inter/files/inter-all-500-normal.woff&quot;);
Expand Down
2 changes: 1 addition & 1 deletion interfaces/InsightCardData.html
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ <h3 id="inputs">Properties</h3>

const { pageName, repos, contributors } &#x3D; insightData ? insightData : await this.getInsightData(insightId);

const template &#x3D; html(insightCardTemplate(pageName, insightContributors(contributors), insightRepos(repos, 3)));
const template &#x3D; html(insightCardTemplate(pageName, insightContributors(contributors.filter(contributor &#x3D;&gt; !contributor.includes(&quot;[bot]&quot;))), insightRepos(repos, 3)));

const interArrayBuffer &#x3D; await fs.readFile(&quot;node_modules/@fontsource/inter/files/inter-all-400-normal.woff&quot;);
const interArrayBufferMedium &#x3D; await fs.readFile(&quot;node_modules/@fontsource/inter/files/inter-all-500-normal.woff&quot;);
Expand Down
4 changes: 2 additions & 2 deletions js/search/search_index.js

Large diffs are not rendered by default.

0 comments on commit 524fc35

Please sign in to comment.