File tree Expand file tree Collapse file tree 9 files changed +568
-453
lines changed
Expand file tree Collapse file tree 9 files changed +568
-453
lines changed Original file line number Diff line number Diff line change 11{
2- "version" : " 0.1.0-autogenerated.9533819768557819421 " ,
2+ "version" : " 0.1.0-autogenerated.1287053452949193419 " ,
33 "name" : " @polkadot-api/descriptors" ,
44 "files" : [
55 " dist"
1919 "types" : " ./dist/index.d.ts" ,
2020 "sideEffects" : false ,
2121 "peerDependencies" : {
22- "polkadot-api" : " * "
22+ "polkadot-api" : " >=1.11.2 "
2323 }
2424}
Original file line number Diff line number Diff line change 44 "entries" : {
55 "collectives" : {
66 "wsUrl" : " wss://polkadot-collectives-rpc.polkadot.io" ,
7- "metadata" : " .papi/metadata/collectives.scale"
7+ "metadata" : " .papi/metadata/collectives.scale" ,
8+ "genesis" : " 0x46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2" ,
9+ "codeHash" : " 0xd4c7e0bd585b07c41426181d59c4e14e9bb0f17a5d4c3043d8bba659fa94c3a0"
810 },
911 "people" : {
1012 "wsUrl" : " wss://polkadot-people-rpc.polkadot.io" ,
11- "metadata" : " .papi/metadata/people.scale"
13+ "metadata" : " .papi/metadata/people.scale" ,
14+ "genesis" : " 0x67fa177a097bfa18f77ea95ab56e9bcdfeb0e5b8a40e46298bb93e16b6fc5008" ,
15+ "codeHash" : " 0x5ad90a21b395a16a6d720983bb9fdd096577710beea33c7882bb61a7518dbb79"
1216 }
1317 }
14- }
18+ }
Original file line number Diff line number Diff line change @@ -32,4 +32,4 @@ outputs:
3232
3333runs :
3434 using : ' docker'
35- image : ' docker://ghcr.io/paritytech/review-bot/action:2.7.0 '
35+ image : ' docker://ghcr.io/paritytech/review-bot/action:2.7.1 '
Original file line number Diff line number Diff line change 11{
22 "name" : " review-bot" ,
3- "version" : " 2.7.0 " ,
3+ "version" : " 2.7.1 " ,
44 "description" : " Have custom review rules for PRs with auto assignment" ,
55 "main" : " src/index.ts" ,
66 "scripts" : {
4141 "@eng-automation/js" : " ^2.2.0" ,
4242 "@polkadot-api/descriptors" : " portal:.papi/descriptors" ,
4343 "joi" : " ^17.13.1" ,
44- "polkadot-api" : " ^1.8.2 " ,
45- "smoldot" : " ^2.0.34 " ,
44+ "polkadot-api" : " ^1.13.0 " ,
45+ "smoldot" : " ^2.0.35 " ,
4646 "yaml" : " ^2.3.4"
4747 },
4848 "packageManager" :
" [email protected] " ,
Original file line number Diff line number Diff line change @@ -22,10 +22,9 @@ export class PolkadotFellows implements TeamApi {
2222 ) : Promise < string | undefined > {
2323 logger . debug ( `Fetching identity of '${ address } '` ) ;
2424
25- const identityOf = await peopleApi . query . Identity . IdentityOf . getValue ( address ) ;
25+ const identity = await peopleApi . query . Identity . IdentityOf . getValue ( address ) ;
2626
27- if ( identityOf ) {
28- const [ identity ] = identityOf ;
27+ if ( identity ) {
2928 const github = readIdentityData ( identity . info . github ) ;
3029
3130 if ( ! github ) {
Original file line number Diff line number Diff line change 11{
2- "compilerOptions" : {
3- "target" : " es6" ,
4- "module" : " commonjs" ,
5- "outDir" : " ./dist" ,
6- "rootDir" : " ./src" ,
7- "strict" : true ,
8- "noImplicitAny" : true ,
9- "esModuleInterop" : true
10- },
11- "exclude" : [
12- " node_modules" ,
13- ]
2+ "compilerOptions" : {
3+ "target" : " es6" ,
4+ "module" : " commonjs" ,
5+ "outDir" : " ./dist" ,
6+ "rootDir" : " ./src" ,
7+ "strict" : true ,
8+ "noImplicitAny" : true ,
9+ "esModuleInterop" : true ,
10+ "skipLibCheck" : true
11+ },
12+ "exclude" : [" node_modules" ]
1413}
You can’t perform that action at this time.
0 commit comments