mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
[AAE-13775] Upstream js - fix issue (#8484)
* fix issue * fix issue * put back \' * fix reg for release * add missing script * remove logs
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user