mirror of
https://github.com/actions/github-script.git
synced 2026-02-08 03:57:27 +00:00
fixed missing name
This commit is contained in:
parent
b17e8805d3
commit
cc9cbe651c
2 changed files with 2 additions and 2 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
|
|
@ -13646,7 +13646,7 @@ class se_Helper {
|
||||||
.toString();
|
.toString();
|
||||||
for (const pomEntity of poms) {
|
for (const pomEntity of poms) {
|
||||||
if (pomEntity['pom'].startsWith('/components') &&
|
if (pomEntity['pom'].startsWith('/components') &&
|
||||||
pomEntity['pom'].indexOf(name + '-deployment/') > -1) {
|
pomEntity['pom'].indexOf(pomEntity['name'] + '-deployment/') > -1) {
|
||||||
const owners = [];
|
const owners = [];
|
||||||
const reviewers = [];
|
const reviewers = [];
|
||||||
for (const ownerRaw of ownersFile.split('\n')) {
|
for (const ownerRaw of ownersFile.split('\n')) {
|
||||||
|
|
|
||||||
|
|
@ -58,7 +58,7 @@ export class Helper {
|
||||||
for (const pomEntity of poms) {
|
for (const pomEntity of poms) {
|
||||||
if (
|
if (
|
||||||
pomEntity['pom'].startsWith('/components') &&
|
pomEntity['pom'].startsWith('/components') &&
|
||||||
pomEntity['pom'].indexOf(name + '-deployment/') > -1
|
pomEntity['pom'].indexOf(pomEntity['name'] + '-deployment/') > -1
|
||||||
) {
|
) {
|
||||||
const owners = []
|
const owners = []
|
||||||
const reviewers = []
|
const reviewers = []
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue