mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* fix issue * fix issue * put back \' * fix reg for release * add missing script * remove logs
21 lines
547 B
JavaScript
Executable File
21 lines
547 B
JavaScript
Executable File
module.exports = async ({github, context, version}) => {
|
|
|
|
const BRANCH_TO_CREATE = 'upstream-dependencies';
|
|
|
|
const { data: prs } = await github.rest.pulls.list({
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
state: 'open',
|
|
head: `${context.repo.owner}:${BRANCH_TO_CREATE}`,
|
|
base: 'develop'
|
|
});
|
|
|
|
if (prs?.length > 0) {
|
|
const title = prs[0].title;
|
|
const result = title.match(version);
|
|
return result?.length > 0 ? true : false;
|
|
}
|
|
return false;
|
|
|
|
}
|
|
|