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: CONTRIBUTING.md
+20-19Lines changed: 20 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,10 @@
2
2
3
3
We love contributions to get started contributing you might need:
4
4
5
-
*[Get started with git](https://rogerdudler.github.io/git-guide)
6
-
*[How to create a pull request](https://help.github.com/articles/using-pull-requests)
7
-
*[An issue to work on](https://github.com/GitTools/GitVersion/labels/up-for-grabs) - We are on [Up for grabs](https://up-for-grabs.net/), our up for grabs issues are tagged `up-for-grabs`
8
-
*An understanding of our [architecture](https://gitversion.net/docs/learn/how-it-works#architecture) and how [we write tests](#writing-tests)
5
+
*[Get started with git](https://rogerdudler.github.io/git-guide)
6
+
*[How to create a pull request](https://help.github.com/articles/using-pull-requests)
7
+
*[An issue to work on](https://github.com/GitTools/GitVersion/labels/up-for-grabs) - We are on [Up for grabs](https://up-for-grabs.net/), our up for grabs issues are tagged `up-for-grabs`
8
+
* An understanding of our [architecture](https://gitversion.net/docs/learn/how-it-works#architecture) and how [we write tests](#writing-tests)
9
9
10
10
Once you know how to create a pull request and have an issue to work on, just post a comment saying you will work on it.
11
11
If you end up not being able to complete the task, please post another comment so others can pick it up.
@@ -14,9 +14,9 @@ Issues are also welcome, [failing tests](#writing-tests) are even more welcome.
14
14
15
15
## Contribution Guidelines
16
16
17
-
*Try to use feature branches rather than developing on main.
18
-
*Please include tests covering the change.
19
-
*The documentation is stored in the repository under the [`docs`](docs) folder.
17
+
* Try to use feature branches rather than developing on main.
18
+
* Please include tests covering the change.
19
+
* The documentation is stored in the repository under the [`docs`](docs) folder.
20
20
Have a look at the [documentation readme file](docs/readme.md) for guidance
21
21
on how to improve the documentation and please include documentation updates
22
22
with your PR.
@@ -50,6 +50,7 @@ var configurationBuilder = GitFlowConfigurationBuilder.New;
50
50
We can then customize the configuration by chaining methods of the builder. At the end we build the configuration.
@@ -61,9 +62,9 @@ var configuration = configurationBuilder
61
62
62
63
We have a few fixtures for different scenarios.
63
64
64
-
*`EmptyRepositoryFixture` - Gives you an empty git repo to start with
65
-
*`RemoteRepositoryFixture` - A local repo tracking a test remote repository. The remote repo is available through the `Repository` property, the local is accessible via `LocalRepository`
66
-
*`BaseGitFlowRepositoryFixture` - A repo setup for GitFlow (has a develop branch checked out ready to go)
65
+
*`EmptyRepositoryFixture` - Gives you an empty git repo to start with
66
+
*`RemoteRepositoryFixture` - A local repo tracking a test remote repository. The remote repo is available through the `Repository` property, the local is accessible via `LocalRepository`
67
+
*`BaseGitFlowRepositoryFixture` - A repo setup for GitFlow (has a develop branch checked out ready to go)
67
68
68
69
You can use a fixture by just `using` it. Like this
69
70
@@ -97,18 +98,18 @@ Even better include the fix, but a failing test is a great start
97
98
98
99
We use Cake for our build and deployment process. The way the release process is setup is:
99
100
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.
101
+
1. We build releasable artifacts with GitHub Actions
102
+
2. We create a milestone for the release if it's not already created. Our milestones are named using the semver.
102
103
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,
104
+
3. We move all the closed issues and closed pull requests that are going to be included in the release to the milestone.
105
+
4. We check that all the issues and pull requests that are going to be included in the release have a label assigned,
105
106
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
107
+
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`
108
+
6. We specify if the release is a pre-release or latest release in the GitHub UI.
109
+
7. We publish the release.
110
+
8. The GitHub Actions will create a GitHub release and publish the artifacts to NuGet, Chocolatey, Docker, Homebrew
110
111
and other distribution channels.
111
-
9.The issues and pull requests will get updated with message specifying in which release it was included.
112
+
9. The issues and pull requests will get updated with message specifying in which release it was included.
Copy file name to clipboardExpand all lines: SECURITY.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,13 +17,13 @@ You should receive a response within 24 hours. If for some reason you do not, pl
17
17
18
18
Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue:
0 commit comments