You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/angular-robot.yml
+2-2
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,7 @@ merge:
97
97
98
98
# whether the PR shouldn't have a conflict with the base branch
99
99
noConflict: true
100
-
# list of labels that a PR needs to have, checked with a regexp (e.g. "target:" will work for the label "target: master")
100
+
# list of labels that a PR needs to have, checked with a regexp.
101
101
requiredLabels:
102
102
- 'target: *'
103
103
@@ -119,7 +119,7 @@ merge:
119
119
# the comment that will be added when the merge label is added despite failing checks, leave empty or set to false to disable
120
120
# {{MERGE_LABEL}} will be replaced by the value of the mergeLabel option
121
121
# {{PLACEHOLDER}} will be replaced by the list of failing checks
122
-
mergeRemovedComment: "I see that you just added the `{{MERGE_LABEL}}` label, but the following checks are still failing:\n{{PLACEHOLDER}}\n\n**If you want your PR to be merged, it has to pass all the CI checks.**\n\nIf you can't get the PR to a green state due to flakes or broken master, please try rebasing to master and/or restarting the CI job. If that fails and you believe that the issue is not due to your change, please contact the caretaker and ask for help."
122
+
mergeRemovedComment: "I see that you just added the `{{MERGE_LABEL}}` label, but the following checks are still failing:\n{{PLACEHOLDER}}\n\n**If you want your PR to be merged, it has to pass all the CI checks.**\n\nIf you can't get the PR to a green state due to flakes or broken `main`, please try rebasing to `main` and/or restarting the CI job. If that fails and you believe that the issue is not due to your change, please contact the caretaker and ask for help."
Copy file name to clipboardExpand all lines: aio/content/guide/aot-compiler.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -109,7 +109,7 @@ You can think of `.metadata.json` as a diagram of the overall structure of a dec
109
109
110
110
<divclass="alert is-helpful">
111
111
112
-
Angular's [schema.ts](https://github.com/angular/angular/blob/master/packages/compiler-cli/src/metadata/schema.ts) describes the JSON format as a collection of TypeScript interfaces.
112
+
Angular's [schema.ts](https://github.com/angular/angular/blob/main/packages/compiler-cli/src/metadata/schema.ts) describes the JSON format as a collection of TypeScript interfaces.
113
113
114
114
</div>
115
115
@@ -389,7 +389,7 @@ export class TypicalModule {}
389
389
</code-example>
390
390
391
391
The Angular [`RouterModule`](api/router/RouterModule) exports two macro static methods, `forRoot` and `forChild`, to help declare root and child routes.
392
-
Review the [source code](https://github.com/angular/angular/blob/master/packages/router/src/router_module.ts#L139"RouterModule.forRoot source code")
392
+
Review the [source code](https://github.com/angular/angular/blob/main/packages/router/src/router_module.ts#L139"RouterModule.forRoot source code")
393
393
for these methods to see how macros can simplify configuration of complex [NgModules](guide/ngmodules).
Copy file name to clipboardExpand all lines: aio/content/guide/contributors-guide-overview.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ The topics in this section cover ways in which you can contribute to the Angular
6
6
7
7
## Before you begin
8
8
9
-
Before you get started with your contributions, we recommend that you review [Contributing to Angular](https://github.com/angular/angular/blob/master/CONTRIBUTING.md). That topic explains many of the tasks and guidelines you need to know before you make your first pull request.
9
+
Before you get started with your contributions, we recommend that you review [Contributing to Angular](https://github.com/angular/angular/blob/main/CONTRIBUTING.md). That topic explains many of the tasks and guidelines you need to know before you make your first pull request.
0 commit comments