Skip to content

Commit

Permalink
Merge pull request #56617 from Expensify/main
Browse files Browse the repository at this point in the history
[No QA]Allow Javascript tests to be run on forks
  • Loading branch information
roryabraham authored Feb 10, 2025
2 parents 9632458 + 9761fe1 commit bf22ce9
Show file tree
Hide file tree
Showing 27 changed files with 154 additions and 142 deletions.
2 changes: 1 addition & 1 deletion .github/actionlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ self-hosted-runner:
- ubuntu-latest-xl
- macos-15-large
- macos-15-xlarge
- ubuntu-latest-reassure-tests
- macos-12
- ubuntu-20.04-v4

paths:
'**/*':
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/javascript/authorChecklist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17242,8 +17242,8 @@ exports["default"] = newComponentCategory;
Object.defineProperty(exports, "__esModule", ({ value: true }));
const GITHUB_BASE_URL_REGEX = new RegExp('https?://(?:github\\.com|api\\.github\\.com)');
const GIT_CONST = {
GITHUB_OWNER: 'Expensify',
APP_REPO: 'App',
GITHUB_OWNER: process.env.GITHUB_REPOSITORY_OWNER,
APP_REPO: process.env.GITHUB_REPOSITORY.split('/').at(1) ?? '',
};
const CONST = {
...GIT_CONST,
Expand Down Expand Up @@ -17532,7 +17532,7 @@ class GithubUtils {
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
// Tag version and comparison URL
// eslint-disable-next-line max-len
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n`;
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
// PR list
if (sortedPRList.length > 0) {
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/javascript/awaitStagingDeploys/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12246,8 +12246,8 @@ exports.getStringInput = getStringInput;
Object.defineProperty(exports, "__esModule", ({ value: true }));
const GITHUB_BASE_URL_REGEX = new RegExp('https?://(?:github\\.com|api\\.github\\.com)');
const GIT_CONST = {
GITHUB_OWNER: 'Expensify',
APP_REPO: 'App',
GITHUB_OWNER: process.env.GITHUB_REPOSITORY_OWNER,
APP_REPO: process.env.GITHUB_REPOSITORY.split('/').at(1) ?? '',
};
const CONST = {
...GIT_CONST,
Expand Down Expand Up @@ -12536,7 +12536,7 @@ class GithubUtils {
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
// Tag version and comparison URL
// eslint-disable-next-line max-len
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n`;
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
// PR list
if (sortedPRList.length > 0) {
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/javascript/checkAndroidStatus/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -736639,8 +736639,8 @@ checkAndroidStatus()
Object.defineProperty(exports, "__esModule", ({ value: true }));
const GITHUB_BASE_URL_REGEX = new RegExp('https?://(?:github\\.com|api\\.github\\.com)');
const GIT_CONST = {
GITHUB_OWNER: 'Expensify',
APP_REPO: 'App',
GITHUB_OWNER: process.env.GITHUB_REPOSITORY_OWNER,
APP_REPO: process.env.GITHUB_REPOSITORY.split('/').at(1) ?? '',
};
const CONST = {
...GIT_CONST,
Expand Down Expand Up @@ -736929,7 +736929,7 @@ class GithubUtils {
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
// Tag version and comparison URL
// eslint-disable-next-line max-len
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n`;
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
// PR list
if (sortedPRList.length > 0) {
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/javascript/checkDeployBlockers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11529,8 +11529,8 @@ exports["default"] = run;
Object.defineProperty(exports, "__esModule", ({ value: true }));
const GITHUB_BASE_URL_REGEX = new RegExp('https?://(?:github\\.com|api\\.github\\.com)');
const GIT_CONST = {
GITHUB_OWNER: 'Expensify',
APP_REPO: 'App',
GITHUB_OWNER: process.env.GITHUB_REPOSITORY_OWNER,
APP_REPO: process.env.GITHUB_REPOSITORY.split('/').at(1) ?? '',
};
const CONST = {
...GIT_CONST,
Expand Down Expand Up @@ -11819,7 +11819,7 @@ class GithubUtils {
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
// Tag version and comparison URL
// eslint-disable-next-line max-len
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n`;
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
// PR list
if (sortedPRList.length > 0) {
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11592,8 +11592,8 @@ exports["default"] = run;
Object.defineProperty(exports, "__esModule", ({ value: true }));
const GITHUB_BASE_URL_REGEX = new RegExp('https?://(?:github\\.com|api\\.github\\.com)');
const GIT_CONST = {
GITHUB_OWNER: 'Expensify',
APP_REPO: 'App',
GITHUB_OWNER: process.env.GITHUB_REPOSITORY_OWNER,
APP_REPO: process.env.GITHUB_REPOSITORY.split('/').at(1) ?? '',
};
const CONST = {
...GIT_CONST,
Expand Down Expand Up @@ -12101,7 +12101,7 @@ class GithubUtils {
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
// Tag version and comparison URL
// eslint-disable-next-line max-len
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n`;
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
// PR list
if (sortedPRList.length > 0) {
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/javascript/getArtifactInfo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11490,8 +11490,8 @@ exports["default"] = run;
Object.defineProperty(exports, "__esModule", ({ value: true }));
const GITHUB_BASE_URL_REGEX = new RegExp('https?://(?:github\\.com|api\\.github\\.com)');
const GIT_CONST = {
GITHUB_OWNER: 'Expensify',
APP_REPO: 'App',
GITHUB_OWNER: process.env.GITHUB_REPOSITORY_OWNER,
APP_REPO: process.env.GITHUB_REPOSITORY.split('/').at(1) ?? '',
};
const CONST = {
...GIT_CONST,
Expand Down Expand Up @@ -11780,7 +11780,7 @@ class GithubUtils {
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
// Tag version and comparison URL
// eslint-disable-next-line max-len
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n`;
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
// PR list
if (sortedPRList.length > 0) {
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/javascript/getDeployPullRequestList/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11633,8 +11633,8 @@ exports.getStringInput = getStringInput;
Object.defineProperty(exports, "__esModule", ({ value: true }));
const GITHUB_BASE_URL_REGEX = new RegExp('https?://(?:github\\.com|api\\.github\\.com)');
const GIT_CONST = {
GITHUB_OWNER: 'Expensify',
APP_REPO: 'App',
GITHUB_OWNER: process.env.GITHUB_REPOSITORY_OWNER,
APP_REPO: process.env.GITHUB_REPOSITORY.split('/').at(1) ?? '',
};
const CONST = {
...GIT_CONST,
Expand Down Expand Up @@ -12142,7 +12142,7 @@ class GithubUtils {
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
// Tag version and comparison URL
// eslint-disable-next-line max-len
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n`;
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
// PR list
if (sortedPRList.length > 0) {
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/javascript/getPreviousVersion/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2757,8 +2757,8 @@ exports["default"] = run;
Object.defineProperty(exports, "__esModule", ({ value: true }));
const GITHUB_BASE_URL_REGEX = new RegExp('https?://(?:github\\.com|api\\.github\\.com)');
const GIT_CONST = {
GITHUB_OWNER: 'Expensify',
APP_REPO: 'App',
GITHUB_OWNER: process.env.GITHUB_REPOSITORY_OWNER,
APP_REPO: process.env.GITHUB_REPOSITORY.split('/').at(1) ?? '',
};
const CONST = {
...GIT_CONST,
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/javascript/getPullRequestDetails/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11593,8 +11593,8 @@ exports.getStringInput = getStringInput;
Object.defineProperty(exports, "__esModule", ({ value: true }));
const GITHUB_BASE_URL_REGEX = new RegExp('https?://(?:github\\.com|api\\.github\\.com)');
const GIT_CONST = {
GITHUB_OWNER: 'Expensify',
APP_REPO: 'App',
GITHUB_OWNER: process.env.GITHUB_REPOSITORY_OWNER,
APP_REPO: process.env.GITHUB_REPOSITORY.split('/').at(1) ?? '',
};
const CONST = {
...GIT_CONST,
Expand Down Expand Up @@ -11883,7 +11883,7 @@ class GithubUtils {
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
// Tag version and comparison URL
// eslint-disable-next-line max-len
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n`;
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
// PR list
if (sortedPRList.length > 0) {
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/javascript/isStagingDeployLocked/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11490,8 +11490,8 @@ exports["default"] = run;
Object.defineProperty(exports, "__esModule", ({ value: true }));
const GITHUB_BASE_URL_REGEX = new RegExp('https?://(?:github\\.com|api\\.github\\.com)');
const GIT_CONST = {
GITHUB_OWNER: 'Expensify',
APP_REPO: 'App',
GITHUB_OWNER: process.env.GITHUB_REPOSITORY_OWNER,
APP_REPO: process.env.GITHUB_REPOSITORY.split('/').at(1) ?? '',
};
const CONST = {
...GIT_CONST,
Expand Down Expand Up @@ -11780,7 +11780,7 @@ class GithubUtils {
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
// Tag version and comparison URL
// eslint-disable-next-line max-len
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n`;
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
// PR list
if (sortedPRList.length > 0) {
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12889,8 +12889,8 @@ exports.getStringInput = getStringInput;
Object.defineProperty(exports, "__esModule", ({ value: true }));
const GITHUB_BASE_URL_REGEX = new RegExp('https?://(?:github\\.com|api\\.github\\.com)');
const GIT_CONST = {
GITHUB_OWNER: 'Expensify',
APP_REPO: 'App',
GITHUB_OWNER: process.env.GITHUB_REPOSITORY_OWNER,
APP_REPO: process.env.GITHUB_REPOSITORY.split('/').at(1) ?? '',
};
const CONST = {
...GIT_CONST,
Expand Down Expand Up @@ -13179,7 +13179,7 @@ class GithubUtils {
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
// Tag version and comparison URL
// eslint-disable-next-line max-len
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n`;
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
// PR list
if (sortedPRList.length > 0) {
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/javascript/postTestBuildComment/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11596,8 +11596,8 @@ exports["default"] = run;
Object.defineProperty(exports, "__esModule", ({ value: true }));
const GITHUB_BASE_URL_REGEX = new RegExp('https?://(?:github\\.com|api\\.github\\.com)');
const GIT_CONST = {
GITHUB_OWNER: 'Expensify',
APP_REPO: 'App',
GITHUB_OWNER: process.env.GITHUB_REPOSITORY_OWNER,
APP_REPO: process.env.GITHUB_REPOSITORY.split('/').at(1) ?? '',
};
const CONST = {
...GIT_CONST,
Expand Down Expand Up @@ -11886,7 +11886,7 @@ class GithubUtils {
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
// Tag version and comparison URL
// eslint-disable-next-line max-len
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n`;
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
// PR list
if (sortedPRList.length > 0) {
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/javascript/proposalPoliceComment/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18073,8 +18073,8 @@ run().catch((error) => {
Object.defineProperty(exports, "__esModule", ({ value: true }));
const GITHUB_BASE_URL_REGEX = new RegExp('https?://(?:github\\.com|api\\.github\\.com)');
const GIT_CONST = {
GITHUB_OWNER: 'Expensify',
APP_REPO: 'App',
GITHUB_OWNER: process.env.GITHUB_REPOSITORY_OWNER,
APP_REPO: process.env.GITHUB_REPOSITORY.split('/').at(1) ?? '',
};
const CONST = {
...GIT_CONST,
Expand Down Expand Up @@ -18363,7 +18363,7 @@ class GithubUtils {
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
// Tag version and comparison URL
// eslint-disable-next-line max-len
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n`;
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
// PR list
if (sortedPRList.length > 0) {
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/javascript/reopenIssueWithComment/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11500,8 +11500,8 @@ reopenIssueWithComment()
Object.defineProperty(exports, "__esModule", ({ value: true }));
const GITHUB_BASE_URL_REGEX = new RegExp('https?://(?:github\\.com|api\\.github\\.com)');
const GIT_CONST = {
GITHUB_OWNER: 'Expensify',
APP_REPO: 'App',
GITHUB_OWNER: process.env.GITHUB_REPOSITORY_OWNER,
APP_REPO: process.env.GITHUB_REPOSITORY.split('/').at(1) ?? '',
};
const CONST = {
...GIT_CONST,
Expand Down Expand Up @@ -11790,7 +11790,7 @@ class GithubUtils {
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
// Tag version and comparison URL
// eslint-disable-next-line max-len
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n`;
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
// PR list
if (sortedPRList.length > 0) {
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/javascript/reviewerChecklist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11592,8 +11592,8 @@ getNumberOfItemsFromReviewerChecklist()
Object.defineProperty(exports, "__esModule", ({ value: true }));
const GITHUB_BASE_URL_REGEX = new RegExp('https?://(?:github\\.com|api\\.github\\.com)');
const GIT_CONST = {
GITHUB_OWNER: 'Expensify',
APP_REPO: 'App',
GITHUB_OWNER: process.env.GITHUB_REPOSITORY_OWNER,
APP_REPO: process.env.GITHUB_REPOSITORY.split('/').at(1) ?? '',
};
const CONST = {
...GIT_CONST,
Expand Down Expand Up @@ -11882,7 +11882,7 @@ class GithubUtils {
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
// Tag version and comparison URL
// eslint-disable-next-line max-len
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n`;
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
// PR list
if (sortedPRList.length > 0) {
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/javascript/verifySignedCommits/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11532,8 +11532,8 @@ GithubUtils_1.default.octokit.pulls
Object.defineProperty(exports, "__esModule", ({ value: true }));
const GITHUB_BASE_URL_REGEX = new RegExp('https?://(?:github\\.com|api\\.github\\.com)');
const GIT_CONST = {
GITHUB_OWNER: 'Expensify',
APP_REPO: 'App',
GITHUB_OWNER: process.env.GITHUB_REPOSITORY_OWNER,
APP_REPO: process.env.GITHUB_REPOSITORY.split('/').at(1) ?? '',
};
const CONST = {
...GIT_CONST,
Expand Down Expand Up @@ -11822,7 +11822,7 @@ class GithubUtils {
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
// Tag version and comparison URL
// eslint-disable-next-line max-len
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n`;
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
// PR list
if (sortedPRList.length > 0) {
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Expand Down
Loading

0 comments on commit bf22ce9

Please sign in to comment.