mirror of
https://github.com/actions/github-script.git
synced 2026-02-08 03:57:27 +00:00
More fixes from test
This commit is contained in:
parent
d75cec7ae6
commit
31d5a27e0d
1 changed files with 11 additions and 11 deletions
22
src/se.ts
22
src/se.ts
|
|
@ -10,34 +10,34 @@ export function createMetaJson(root: string): string[] {
|
||||||
|
|
||||||
const xmllint = execSync('sudo apt install libxml2-utils', { shell: '/bin/bash' });
|
const xmllint = execSync('sudo apt install libxml2-utils', { shell: '/bin/bash' });
|
||||||
console.log(xmllint.toString());
|
console.log(xmllint.toString());
|
||||||
let command = `#!/bin/bash
|
const command = `#!/bin/bash
|
||||||
cd ` + root + `
|
cd ` + root + `
|
||||||
find . -name 'pom.xml' -type f > ` + root + `poms.txt
|
find . -name 'pom.xml' -type f > ` + root + `poms.txt
|
||||||
`;
|
`;
|
||||||
const output = execSync(command, { shell: '/bin/bash' });
|
const output = execSync(command, { shell: '/bin/bash' });
|
||||||
console.log(output.toString());
|
console.log(output.toString());
|
||||||
|
|
||||||
let poms = fs.readFileSync(root + 'poms.txt', 'utf8').toString();
|
const poms = fs.readFileSync(root + 'poms.txt', 'utf8').toString();
|
||||||
let ownersFile = fs.readFileSync(root + '.github/CODEOWNERS', 'utf8').toString();
|
const ownersFile = fs.readFileSync(root + '.github/CODEOWNERS', 'utf8').toString();
|
||||||
for (const pomRaw of poms.split('\n')) {
|
for (const pomRaw of poms.split('\n')) {
|
||||||
let pom = pomRaw.replace("./", "/");
|
const pom = pomRaw.replace("./", "/");
|
||||||
let name = pom.split("/")[2];
|
const name = pom.split("/")[2];
|
||||||
if (pom.startsWith("/components") && pom.indexOf(name + "-deployment/") > -1) {
|
if (pom.startsWith("/components") && pom.indexOf(name + "-deployment/") > -1) {
|
||||||
let owners = [];
|
const owners = [];
|
||||||
let reviewers = [];
|
const reviewers = [];
|
||||||
for (const ownerRaw of ownersFile.split('\n')) {
|
for (const ownerRaw of ownersFile.split('\n')) {
|
||||||
let path = ownerRaw.split(' ')[0];
|
const path = ownerRaw.split(' ')[0];
|
||||||
|
|
||||||
if (path.length > 3 && ownerRaw.indexOf(' @') > -1 && pom.startsWith(path)) {
|
if (path.length > 3 && ownerRaw.indexOf(' @') > -1 && pom.startsWith(path)) {
|
||||||
owners.push(ownerRaw.split(' ')[1])
|
owners.push(ownerRaw.split(' ')[1])
|
||||||
reviewers.push(ownerRaw.split(' ')[1])
|
reviewers.push(ownerRaw.split(' ')[1])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let gid = `#!/bin/bash
|
const gid = `#!/bin/bash
|
||||||
cd ` + root + `
|
cd ` + root + `
|
||||||
xmllint --xpath "/*[local-name()='project']/*[local-name()='groupId']/text()" ` + pom + `
|
xmllint --xpath "/*[local-name()='project']/*[local-name()='groupId']/text()" ` + pom + `
|
||||||
`
|
`
|
||||||
let aid = `#!/bin/bash
|
const aid = `#!/bin/bash
|
||||||
cd ` + root + `
|
cd ` + root + `
|
||||||
xmllint --xpath "/*[local-name()='project']/*[local-name()='artifactId']/text()" ` + pom + `
|
xmllint --xpath "/*[local-name()='project']/*[local-name()='artifactId']/text()" ` + pom + `
|
||||||
`
|
`
|
||||||
|
|
@ -45,7 +45,7 @@ export function createMetaJson(root: string): string[] {
|
||||||
console.log(groupId);
|
console.log(groupId);
|
||||||
const artifactId = execSync(aid, { shell: '/bin/bash' }).toString();
|
const artifactId = execSync(aid, { shell: '/bin/bash' }).toString();
|
||||||
console.log(artifactId);
|
console.log(artifactId);
|
||||||
let meta = {};
|
const meta = {};
|
||||||
meta['manifestSource'] = pom.replace("/pom.xml", "").substring(1);
|
meta['manifestSource'] = pom.replace("/pom.xml", "").substring(1);
|
||||||
meta['manifestTarget'] = "helm-chart/components/charts/" + name + "/" + name + "-deployment/templates/";
|
meta['manifestTarget'] = "helm-chart/components/charts/" + name + "/" + name + "-deployment/templates/";
|
||||||
meta['owners'] = owners;
|
meta['owners'] = owners;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue