Skip to content

Commit

Permalink
Changed references to the master branch to main
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisdoomen committed Nov 26, 2024
1 parent 8e8f28a commit b5be50c
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request_target:
push:
branches:
- master
- main
- develop

jobs:
Expand All @@ -20,7 +20,7 @@ jobs:
- name: 'Qodana Scan'
uses: JetBrains/[email protected]
with:
upload-result: ${{ github.ref_name == 'master' || github.ref_name == 'develop' }}
upload-result: ${{ github.ref_name == 'main' || github.ref_name == 'develop' }}
args: --baseline,qodana.sarif.json,--ide,QDNET
pr-mode: ${{ github.event_name == 'pull_request_target' }}
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: "CodeQL"

on:
push:
branches: [ "develop", "master" ]
branches: [ "develop", "main" ]
pull_request:
branches: [ "develop", "master" ]
branches: [ "develop", "main" ]
schedule:
- cron: '00 15 * * 1'

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Extension methods to fluently assert the outcome of .NET tests
[![](https://img.shields.io/github/actions/workflow/status/fluentassertions/fluentassertions/build.yml?branch=develop)](https://github.com/fluentassertions/fluentassertions/actions?query=branch%3Adevelop)
[![Coveralls branch](https://img.shields.io/coverallsCoverage/github/fluentassertions/fluentassertions?branch=master)](https://coveralls.io/github/fluentassertions/fluentassertions?branch=master)
[![Coveralls branch](https://img.shields.io/coverallsCoverage/github/fluentassertions/fluentassertions?branch=main)](https://coveralls.io/github/fluentassertions/fluentassertions?branch=main)
[![qodana](https://github.com/fluentassertions/fluentassertions/actions/workflows/code_quality.yml/badge.svg)](https://github.com/fluentassertions/fluentassertions/actions/workflows/code_quality.yml)
[![](https://img.shields.io/github/release/FluentAssertions/FluentAssertions.svg?label=latest%20release&color=007edf)](https://github.com/FluentAssertions/FluentAssertions/releases/latest)
[![](https://img.shields.io/nuget/dt/FluentAssertions.svg?label=downloads&color=007edf&logo=nuget)](https://www.nuget.org/packages/FluentAssertions)
Expand Down
2 changes: 1 addition & 1 deletion docs/.travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ script:
branches:
only:
# Change this to gh-pages if you're deploying using the gh-pages branch
- master
- main
rvm:
- 2.4
2 changes: 1 addition & 1 deletion docs/_includes/editlink.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
{% assign path = page.path %}
{% endif %}

<a href="https://github.com/{{ site.repository }}/edit/master/docs/{{ path }}"><i class="far fa-edit"></i> Edit this page</a>
<a href="https://github.com/{{ site.repository }}/edit/main/docs/{{ path }}"><i class="far fa-edit"></i> Edit this page</a>
2 changes: 1 addition & 1 deletion docs/_pages/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ using (var scope = new AssertionScope())
}
```

For more examples take a look at the [AssertionScopeSpecs.cs](https://github.com/fluentassertions/fluentassertions/blob/master/Tests/FluentAssertions.Specs/Execution/AssertionScopeSpecs.cs) in Unit Tests.
For more examples take a look at the [AssertionScopeSpecs.cs](https://github.com/fluentassertions/fluentassertions/blob/main/Tests/FluentAssertions.Specs/Execution/AssertionScopeSpecs.cs) in Unit Tests.

### Scoped `IValueFormatter`s

Expand Down
2 changes: 1 addition & 1 deletion docs/_pages/typesandmethods.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,4 @@ AllTypes.From(assembly)
.ThatAreNotInNamespace("Internal.Main.Test");
```

There are so many possibilities and specialized methods that none of these examples do them good. Check out the [TypeAssertionSpecs](https://github.com/fluentassertions/fluentassertions/tree/master/Tests/FluentAssertions.Specs/Types) from the source for more examples.
There are so many possibilities and specialized methods that none of these examples do them good. Check out the [TypeAssertionSpecs](https://github.com/fluentassertions/fluentassertions/tree/main/Tests/FluentAssertions.Specs/Types) from the source for more examples.
2 changes: 1 addition & 1 deletion docs/staticman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ comments:
#
# Name of the branch being used. Must match the one sent in the URL of the
# request.
branch: "master"
branch: "main"

commitMessage: "New comment"

Expand Down

0 comments on commit b5be50c

Please sign in to comment.