Skip to content

Commit

Permalink
Tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
stianst committed Feb 6, 2024
1 parent 0fca5a2 commit eb4b017
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
category:
type: choice
options:
- '*'
- all
- areas
- issues
- prs
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./update-data.sh -Dupdate="${{ github.event.inputs.category }}"
./update-data.sh -Dupdate=${{ github.event.inputs.category }}
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]"
Expand Down
22 changes: 11 additions & 11 deletions data.json
Original file line number Diff line number Diff line change
Expand Up @@ -6337,17 +6337,6 @@
"labels" : [ "kind/bug", "area/admin/api", "status/triage", "team/core-iam" ],
"commentsCount" : 1,
"teams" : [ "team/core-iam" ]
}, {
"createdAt" : 1652675683000,
"updatedAt" : 1706792885000,
"closedAt" : null,
"number" : 12000,
"title" : "Okta IDP with keycloak as Service Provider giving 405 Method not allowed error",
"userLogin" : "suchitsancheti",
"milestone" : "Backlog",
"labels" : [ "area/saml", "kind/bug", "status/triage", "team/core-clients" ],
"commentsCount" : 5,
"teams" : [ "team/core-clients" ]
}, {
"createdAt" : 1652598865000,
"updatedAt" : 1706792888000,
Expand Down Expand Up @@ -18668,6 +18657,17 @@
"labels" : [ "area/saml", "kind/bug", "team/core-clients" ],
"commentsCount" : 4,
"teams" : [ "team/core-clients" ]
}, {
"createdAt" : 1652675683000,
"updatedAt" : 1707212323000,
"closedAt" : null,
"number" : 12000,
"title" : "Okta IDP with keycloak as Service Provider giving 405 Method not allowed error",
"userLogin" : "suchitsancheti",
"milestone" : "Backlog",
"labels" : [ "area/saml", "kind/bug", "status/triage", "team/core-clients" ],
"commentsCount" : 6,
"teams" : [ "team/core-clients" ]
} ],
"prs" : [ {
"createdAt" : 1670953523000,
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/keycloak/dashboard/gh/GitHubLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public GitHubData load() throws Exception {
}

public GitHubData update(GitHubData data) throws Exception {
List<String> update = System.getProperty("update") != null && !System.getProperty("update").equals("*") ? Arrays.stream(System.getProperty("update").split(",")).toList() : null;
List<String> update = System.getProperty("update") != null && !System.getProperty("update").equals("all") ? Arrays.stream(System.getProperty("update").split(",")).toList() : null;

if (update == null || update.contains("areas")) {
data.setAreas(queryAreas());
Expand Down

0 comments on commit eb4b017

Please sign in to comment.