This repository was archived by the owner on Mar 15, 2021. It is now read-only.
File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "singleQuote": true,
3
+ "arrowParens": "avoid",
4
+ "trailingComma": "all"
5
+ }
Original file line number Diff line number Diff line change @@ -54,13 +54,13 @@ async function publish() {
54
54
}
55
55
56
56
console . log (
57
- '💁♂️ If it fails, check https://lists.w3.org/Archives/Public/public-tr-notifications/'
57
+ '💁♂️ If it fails, check https://lists.w3.org/Archives/Public/public-tr-notifications/' ,
58
58
) ;
59
59
const data = {
60
60
url : core . getInput ( 'ECHIDNA_MANIFEST_URL' , { required : true } ) ,
61
61
decision : core . getInput ( 'WG_DECISION_URL' , { required : true } ) ,
62
62
token : core . getInput ( 'ECHIDNA_TOKEN' , { required : true } ) ,
63
- cc : core . getInput ( 'CC' )
63
+ cc : core . getInput ( 'CC' ) ,
64
64
} ;
65
65
core . setSecret ( data . token ) ;
66
66
@@ -69,8 +69,8 @@ async function publish() {
69
69
method : 'POST' ,
70
70
body,
71
71
headers : {
72
- 'Content-Type' : 'application/x-www-form-urlencoded'
73
- }
72
+ 'Content-Type' : 'application/x-www-form-urlencoded' ,
73
+ } ,
74
74
} ) ;
75
75
76
76
const result = await getPublishStatus ( id ) ;
@@ -118,7 +118,7 @@ async function getPublishStatus(id) {
118
118
return {
119
119
id,
120
120
status : state . status ,
121
- url : response . results . metadata . thisVersion
121
+ url : response . results . metadata . thisVersion ,
122
122
} ;
123
123
} catch {
124
124
state . response = response ;
You can’t perform that action at this time.
0 commit comments