Skip to content

Commit f0ebcec

Browse files
committed
#3463 - fix linting
1 parent f8691a1 commit f0ebcec

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

CONTRIBUTING.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ We are currently using NUnit, so just create a descriptive test method and attri
4141

4242
### 3. Create a configuration
4343

44-
We use a builder pattern to create a configuration. You can use the `GitFlowConfigurationBuilder` to create a configuration for GitFlow.
44+
We use a builder pattern to create a configuration. You can use the `GitFlowConfigurationBuilder` or `GitHubConfigurationBuilder` or `EmptyConfigurationBuilder` to create a configuration builder.
4545

4646
```csharp
4747
var configurationBuilder = GitFlowConfigurationBuilder.New;
@@ -84,7 +84,7 @@ fixture.Repository.Checkout("feature-test");
8484
fixture.Repository.MakeACommit();
8585
fixture.Repository.MakeCommits(4);
8686

87-
fixture.AssertFullSemver("1.0.1-test.1+5", configuration);
87+
fixture.AssertFullSemver("1.0.1-test.1-5", configuration);
8888
```
8989

9090
The last line is the most important. `AssertFullSemver` will run GitVersion and assert that the full SemVer it calculates is what you expect.
@@ -97,18 +97,18 @@ Even better include the fix, but a failing test is a great start
9797

9898
We use Cake for our build and deployment process. The way the release process is setup is:
9999

100-
1. We build releasable artifacts with GitHub Actions
101-
2. We create a milestone for the release if it's not already created. Our milestones are named using the semver.
102-
For example `5.12.0` or `6.0.0-beta.2`
103-
3. We move all the closed issues and closed pull requests that are going to be included in the release to the milestone.
104-
4. We check that all the issues and pull requests that are going to be included in the release have a label assigned,
105-
otherwise it will fail the release.
106-
5. We create a release in the GitHub UI, and create a tag and name it using the milestone name. For example `5.12.0` or `6.0.0-beta.2`
107-
6. We specify if the release is a pre-release or latest release in the GitHub UI.
108-
7. We publish the release.
109-
8. The GitHub Actions will create a GitHub release and publish the artifacts to NuGet, Chocolatey, Docker, Homebrew
110-
and other distribution channels.
111-
9. The issues and pull requests will get updated with message specifying in which release it was included.
100+
1. We build releasable artifacts with GitHub Actions
101+
2. We create a milestone for the release if it's not already created. Our milestones are named using the semver.
102+
For example `5.12.0` or `6.0.0-beta.2`
103+
3. We move all the closed issues and closed pull requests that are going to be included in the release to the milestone.
104+
4. We check that all the issues and pull requests that are going to be included in the release have a label assigned,
105+
otherwise it will fail the release.
106+
5. We create a release in the GitHub UI, and create a tag and name it using the milestone name. For example `5.12.0` or `6.0.0-beta.2`
107+
6. We specify if the release is a pre-release or latest release in the GitHub UI.
108+
7. We publish the release.
109+
8. The GitHub Actions will create a GitHub release and publish the artifacts to NuGet, Chocolatey, Docker, Homebrew
110+
and other distribution channels.
111+
9. The issues and pull requests will get updated with message specifying in which release it was included.
112112

113113
## Code Style
114114

0 commit comments

Comments
 (0)