Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ jobs:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
./update-data.sh ${{ github.event.inputs.category }}
./download-stars.sh
if ( ! git diff --exit-code &>/dev/null ); then
if ( ! git diff --exit-code &>/dev/null ); then
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
git add --all
Expand Down
23 changes: 0 additions & 23 deletions download-stars.sh

This file was deleted.

2 changes: 0 additions & 2 deletions src/main/java/org/keycloak/dashboard/Dashboard.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ public void createDashboard() throws IOException, TemplateException, ParseExcept
attributes.put("nextRelease", bugs.getNextRelease());
attributes.put("workflowWaitTimes", new WorkflowWaitTimes(data, teamMembers).getWorkFlowWaitPerMonthList());
attributes.put("configContents", Config.getConfigContents());
attributes.put("stars", new Stars());
attributes.put("cveStats", data.getCveStats().stream().map(CveStatsBean::new).toList());

File output = new File("docs/index.html");
Expand All @@ -78,7 +77,6 @@ public void createDashboard() throws IOException, TemplateException, ParseExcept
freeMarker.template("workflows.ftl", new File("docs/workflows.html"));
freeMarker.template("tests.ftl", new File("docs/tests.html"));
freeMarker.template("config.ftl", new File("docs/config.html"));
freeMarker.template("stars.ftl", new File("docs/stars.html"));

System.out.println("Created dashboard: " + output.toURI());
}
Expand Down
144 changes: 0 additions & 144 deletions src/main/java/org/keycloak/dashboard/beans/Stars.java

This file was deleted.

33 changes: 0 additions & 33 deletions src/main/resources/stars.ftl

This file was deleted.

1 change: 0 additions & 1 deletion src/main/resources/template.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
<li><a href="prs<#if !publish>.html</#if>">PRs</a></li>
<li><a href="bugs<#if !publish>.html</#if>">Bugs</a></li>
<li><a href="tests<#if !publish>.html</#if>">Tests</a></li>
<li><a href="stars<#if !publish>.html</#if>">Stars</a></li>
<li><a href="config<#if !publish>.html</#if>">Config</a></li>
</ul>
<div class="updated">Last updated: ${updatedDate?string["dd MMMM yyyy, HH:mm '('zzz')'"]}</div>
Expand Down
Loading