Skip to content

Commit 757140a

Browse files
authored
build: remove exceptional minor logic (#25535)
We no longer have an exceptional minor and can remove the logic we put in place given the release tool not supporting exceptional minors well yet.
1 parent 0cf253e commit 757140a

File tree

2 files changed

+2
-13
lines changed

2 files changed

+2
-13
lines changed

.ng-dev/pull-request.mts

-4
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,4 @@ export const pullRequest: PullRequestConfig = {
1616
mergeReadyLabel: 'merge ready',
1717
commitMessageFixupLabel: 'commit message fixup',
1818
caretakerNoteLabel: 'caretaker note',
19-
20-
// TODO(EXCEPTIONAL_MINOR): Remove this when v15 moves into RC / or when exceptional
21-
// minors are supported.
22-
__specialTreatRcAsExceptionalMinor: true,
2319
};

scripts/docs-deploy/deploy-ci-push.mts

+2-9
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,7 @@ async function main() {
3131
if (branchName === active.next.branchName) {
3232
const major = active.next.version.major;
3333

34-
const targets = [
35-
// TODO(EXCEPTIONAL_MINOR): Restore the original logic for `next.material.angular.io`.
36-
// {projectId, description, site: sites.next}
37-
];
34+
const targets = [{projectId, description, site: sites.next}];
3835

3936
// If the next release train is for a new major that is not published as part of the
4037
// other active release trains, we also publish to e.g. `v14.material.angular.io`.
@@ -72,11 +69,7 @@ async function main() {
7269

7370
if (branchName === active.releaseCandidate?.branchName) {
7471
const major = active.releaseCandidate.version.major;
75-
const targets = [
76-
// TODO(EXCEPTIONAL_MINOR): Restore the original logic for `next.material.angular.io`.
77-
{projectId, description, site: sites.next},
78-
{projectId, description, site: sites.rc},
79-
];
72+
const targets = [{projectId, description, site: sites.rc}];
8073

8174
// If the RC is for a new major that `latest` does not publish yet, we will deploy
8275
// the dedicated major site like `v13.material.angular.io` using the `rc` branch.

0 commit comments

Comments
 (0)