File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 8
8
- cron : ' 0 * * * *'
9
9
workflow_dispatch :
10
10
11
- permissions : read-all
12
-
13
11
jobs :
14
12
sync :
15
13
runs-on : ubuntu-latest
31
29
jbangargs : --verbose -Dworking-groups.output=_data/wg.yaml
32
30
env :
33
31
JBANG_REPO : /root/.jbang/repository
34
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
32
+ GITHUB_TOKEN : ${{ secrets.SYNC_WORKING_GROUP_TOKEN }}
35
33
36
34
- name : Configure Git author
37
35
run : |
Original file line number Diff line number Diff line change @@ -118,6 +118,10 @@ public List<Board> getAllProjectsForOrganization(String org) throws ExecutionExc
118
118
}
119
119
""" , variables );
120
120
121
+
122
+ System .out .println ("Response: " + response );
123
+ System .out .println ("Errors: " + response .getErrors ());
124
+ System .out .println ("Data:\n " + response .getData ());
121
125
JsonArray array = response .getData ().getJsonObject ("organization" ).getJsonObject ("projectsV2" )
122
126
.getJsonArray ("nodes" );
123
127
for (JsonValue value : array ) {
You can’t perform that action at this time.
0 commit comments