2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-20 20:00:40 +03:00

chore(ci): fix automatic contributors resolving; (#5403)

This commit is contained in:
Dmitriy Mozgovoy
2022-12-23 16:49:47 +02:00
committed by GitHub
parent 341f735297
commit 8de391ff8a
3 changed files with 9 additions and 6 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ const injectContributors = async (infile, injector) => {
infile = path.resolve(__dirname, infile);
const content = String(await fs.readFile(infile));
const headerRE = /^##\s+\[([-_\d.\w]+)]\s+-.+/mig;
const headerRE = /^#+\s+\[([-_\d.\w]+)].+?$/mig;
const contributorsRE = /^\s*### Contributors/mi;
let tag;