File tree Expand file tree Collapse file tree
.github/actions/javascript/getDeployPullRequestList Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ async function run() {
2525 ( { data} , done ) => {
2626 // For production deploys, look only at other production deploys.
2727 // staging deploys can be compared with other staging deploys or production deploys.
28- // The reason is that the final staging release in each deploy cycle will BECOME a production release
2928 const filteredData = isProductionDeploy ? data . filter ( ( release ) => ! release . prerelease ) : data ;
3029
3130 // Release was in the last page, meaning the previous release is the first item in this page
Original file line number Diff line number Diff line change @@ -11518,7 +11518,6 @@ async function run() {
1151811518 }, ({ data }, done) => {
1151911519 // For production deploys, look only at other production deploys.
1152011520 // staging deploys can be compared with other staging deploys or production deploys.
11521- // The reason is that the final staging release in each deploy cycle will BECOME a production release
1152211521 const filteredData = isProductionDeploy ? data.filter((release) => !release.prerelease) : data;
1152311522 // Release was in the last page, meaning the previous release is the first item in this page
1152411523 if (foundCurrentRelease) {
You can’t perform that action at this time.
0 commit comments