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 1
1
{
2
- "version" : " 0.1.0-autogenerated.9533819768557819421 " ,
2
+ "version" : " 0.1.0-autogenerated.1287053452949193419 " ,
3
3
"name" : " @polkadot-api/descriptors" ,
4
4
"files" : [
5
5
" dist"
19
19
"types" : " ./dist/index.d.ts" ,
20
20
"sideEffects" : false ,
21
21
"peerDependencies" : {
22
- "polkadot-api" : " * "
22
+ "polkadot-api" : " >=1.11.2 "
23
23
}
24
24
}
Original file line number Diff line number Diff line change 4
4
"entries" : {
5
5
"collectives" : {
6
6
"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"
8
10
},
9
11
"people" : {
10
12
"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"
12
16
}
13
17
}
14
- }
18
+ }
Original file line number Diff line number Diff line change @@ -32,4 +32,4 @@ outputs:
32
32
33
33
runs :
34
34
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 1
1
{
2
2
"name" : " review-bot" ,
3
- "version" : " 2.7.0 " ,
3
+ "version" : " 2.7.1 " ,
4
4
"description" : " Have custom review rules for PRs with auto assignment" ,
5
5
"main" : " src/index.ts" ,
6
6
"scripts" : {
41
41
"@eng-automation/js" : " ^2.2.0" ,
42
42
"@polkadot-api/descriptors" : " portal:.papi/descriptors" ,
43
43
"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 " ,
46
46
"yaml" : " ^2.3.4"
47
47
},
48
48
"packageManager" : " yarn@4.3.0" ,
Original file line number Diff line number Diff line change @@ -22,10 +22,9 @@ export class PolkadotFellows implements TeamApi {
22
22
) : Promise < string | undefined > {
23
23
logger . debug ( `Fetching identity of '${ address } '` ) ;
24
24
25
- const identityOf = await peopleApi . query . Identity . IdentityOf . getValue ( address ) ;
25
+ const identity = await peopleApi . query . Identity . IdentityOf . getValue ( address ) ;
26
26
27
- if ( identityOf ) {
28
- const [ identity ] = identityOf ;
27
+ if ( identity ) {
29
28
const github = readIdentityData ( identity . info . github ) ;
30
29
31
30
if ( ! github ) {
Original file line number Diff line number Diff line change 1
1
{
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" ]
14
13
}
You can’t perform that action at this time.
0 commit comments