Skip to content

Commit 197332f

Browse files
committed
Merge branch 'swap-main'
2 parents 9718225 + ad1380a commit 197332f

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
pull_request:
88
env:
99
DOTNET_NOLOGO: true
@@ -53,7 +53,7 @@ jobs:
5353
run: ./Build.ps1
5454
shell: pwsh
5555
- name: Push to MyGet
56-
if: github.ref == 'refs/heads/master'
56+
if: github.ref == 'refs/heads/main'
5757
env:
5858
NUGET_URL: https://f.feedz.io/lucky-penny-software/automapper/nuget/index.json
5959
NUGET_API_KEY: ${{ secrets.FEEDZIO_ACCESS_TOKEN }}

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ GitHub supports [markdown](https://github.github.com/github-flavored-markdown/),
3838

3939
Make sure you can build the code. Familiarize yourself with the project workflow and our coding conventions. If you don't know what a pull request is read this article: https://help.github.com/articles/using-pull-requests.
4040

41-
**We only accept PRs to the master branch.**
41+
**We only accept PRs to the main branch.**
4242

4343
Before submitting a feature or substantial code contribution please discuss it with the team and ensure it follows the product roadmap. Here's a list of blog posts that are worth reading before doing a pull request:
4444

docs/source/API-Changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# API Changes
22

3-
Starting with version 9.0, you can find out [what changed](https://raw.githubusercontent.com/AutoMapper/AutoMapper/master/src/AutoMapper/ApiCompatBaseline.txt) in the public API from the last major version release.
3+
Starting with version 9.0, you can find out [what changed](https://raw.githubusercontent.com/LuckyPennySoftware/AutoMapper/main/src/AutoMapper/ApiCompatBaseline.txt) in the public API from the last major version release.
44
From the [releases page](https://github.com/LuckyPennySoftware/AutoMapper/releases) you can reach the source code for that release and the version of ApiCompatBaseline.txt in that tree will tell you what changed.
55
A major version release is compared with the previous major version release (so 9.0.0 with 8.0.0) and a minor version release with the current major version release (so 9.1.1 with 9.0.0).

docs/source/Configuration-validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ To skip validation altogether for this map, use `MemberList.None`. That's the de
5555

5656
## Custom validations
5757

58-
You can add custom validations through an extension point. See [here](https://github.com/LuckyPennySoftware/AutoMapper/blob/master/src/UnitTests/CustomValidations.cs).
58+
You can add custom validations through an extension point. See [here](https://github.com/LuckyPennySoftware/AutoMapper/blob/main/src/UnitTests/CustomValidations.cs).

docs/source/Flattening.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,4 +157,4 @@ ForPath(destination => destination.IncludedMember, member => member.MapFrom(sour
157157
```
158158
and the other way around. If that's not what you want, you can avoid `ReverseMap` (explicitly create the reverse map) or you can override the default settings (using `Ignore` or `IncludeMembers` without parameters respectively).
159159

160-
For details, check [the tests](https://github.com/LuckyPennySoftware/AutoMapper/blob/master/src/UnitTests/IMappingExpression/IncludeMembers.cs).
160+
For details, check [the tests](https://github.com/LuckyPennySoftware/AutoMapper/blob/main/src/UnitTests/IMappingExpression/IncludeMembers.cs).

docs/source/License-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AutoMapper is [dual licensed](https://github.com/LuckyPennySoftware/AutoMapper/blob/master/LICENSE.md). To configure the commercial license, either the license key can be set using `Microsoft.Extensions.DependencyInjection` integration:
1+
AutoMapper is [dual licensed](https://github.com/LuckyPennySoftware/AutoMapper/blob/main/LICENSE.md). To configure the commercial license, either the license key can be set using `Microsoft.Extensions.DependencyInjection` integration:
22

33
```c#
44
services.AddAutoMapper(cfg => {

0 commit comments

Comments
 (0)