File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ const main = async () => {
1515 const path = core . getInput ( 'path' ) ;
1616 const content = await fs . readFile ( path , 'utf8' ) ;
1717
18- regex_list = [
18+ let regex_list = [
1919 / (?< = \* \* T e a m N a m e : \* \* ) .* / g,
2020 / (?< = \* \* P r o j e c t N a m e : \* \* ) .* / g,
2121 / (?< = \* \* C o n t a c t N a m e : \* \* ) .* / g,
@@ -24,7 +24,7 @@ const main = async () => {
2424 / (?< = \* \* R e g i s t e r e d A d d r e s s : \* \* ) .* / g
2525 ]
2626
27- outputs = [
27+ let outputs = [
2828 'team_name' ,
2929 'project_name' ,
3030 'contact_name' ,
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ const main = async () => {
77 const path = core . getInput ( 'path' ) ;
88 const content = await fs . readFile ( path , 'utf8' ) ;
99
10- regex_list = [
10+ let regex_list = [
1111 / (?< = \* \* T e a m N a m e : \* \* ) .* / g,
1212 / (?< = \* \* P r o j e c t N a m e : \* \* ) .* / g,
1313 / (?< = \* \* C o n t a c t N a m e : \* \* ) .* / g,
@@ -16,7 +16,7 @@ const main = async () => {
1616 / (?< = \* \* R e g i s t e r e d A d d r e s s : \* \* ) .* / g
1717 ]
1818
19- outputs = [
19+ let outputs = [
2020 'team_name' ,
2121 'project_name' ,
2222 'contact_name' ,
You can’t perform that action at this time.
0 commit comments