We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44ae927 commit 9a5debdCopy full SHA for 9a5debd
dist/index.js
@@ -131,7 +131,7 @@ const main = async () => {
131
/(?<=\*\*Contact Name:\*\* ).*/g,
132
/(?<=\*\*Contact Email:\*\* ).*/g,
133
/(?<=\*\*Total Costs:\*\* ).*(?= BTC)/gi,
134
- /(?<=\*\*Total Costs:\*\* ).*(?= DAI)/gi,
+ /(?<=\*\*Total Costs:\*\* ).*(?=( DAI)|( USD))/gi,
135
/(?<=\*\*Registered Address:\*\* ).*/g
136
]
137
@@ -150,7 +150,7 @@ const main = async () => {
150
const result = content.match(reg)[0]
151
core.setOutput(outputs[i], result)
152
} catch {
153
- core.error(`Match not found for: ${outputs[i]}`)
+ core.warning(`Match not found for: ${outputs[i]}`)
154
}
155
})
156
0 commit comments