Skip to content

Commit cd89b91

Browse files
committed
cleanup
1 parent 7819c9b commit cd89b91

File tree

6 files changed

+11
-28
lines changed

6 files changed

+11
-28
lines changed

.github/workflows/format.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ jobs:
3737
runs-on: ubuntu-latest
3838
name: DotNet Format
3939
steps:
40-
- uses: actions/checkout@v4
40+
-
41+
name: Checkout
42+
uses: actions/checkout@v4
4143
-
4244
name: Setup .NET SDK
4345
uses: actions/setup-dotnet@v4

.github/workflows/release.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,19 @@ jobs:
88
name: Trigger ci flow
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
12-
- name: Get version
11+
-
12+
name: Checkout
13+
uses: actions/checkout@v4
14+
-
15+
name: Get version
1316
id: get-version
1417
shell: pwsh
1518
run: |
1619
# Finding the version from release tag
1720
$VERSION="${{ github.ref }}".Replace("refs/tags/", "")
1821
"version=$VERSION" >> $env:GITHUB_OUTPUT
19-
- uses: peter-evans/repository-dispatch@v3
22+
-
23+
uses: peter-evans/repository-dispatch@v3
2024
with:
2125
token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
2226
repository: ${{ github.repository }}

docs/input/docs/learn/faq.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,6 @@ SemVer.
4949
If you want to fix the version, use `NuGetVersionV2` which will stay the same
5050
after NuGet 3.0 comes out
5151

52-
## How do I choose my branching strategy (GitFlow vs GitHubFlow)
53-
54-
If you run `gitversion init` then choose `Getting started wizard` then choose
55-
`Unsure, tell me more`, GitVersion will run through a series of questions which
56-
will try and help point you towards a branching strategy and why you would use
57-
it.
58-
5952
## Merged branch names as version source
6053

6154
When GitVersion considers previous commits to calculate a version number, it's

docs/input/docs/reference/configuration.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,6 @@ RedirectFrom: docs/configuration
88
GitVersion, starting from version 3.0, is mainly powered by configuration and no
99
longer has branching strategies hard-coded.
1010

11-
## Configuration tool
12-
13-
If you run `gitversion init`, GitVersion will launch into a configuration tool,
14-
which can help you configure GitVersion the way you want it.
15-
16-
Once complete, the `init` command will create a `GitVersion.yml` file in the
17-
working directory. It can be the root repository directory or any subdirectory
18-
in case you have a single repository for more than one project or are restricted
19-
to commit into a subdirectory.
20-
2111
:::{.alert .alert-info}
2212
**Note**
2313

docs/input/docs/reference/modes/manual-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ remain on the same pre-released version until it has been deployed dedicatedly.
1515

1616
The thing about manual deployment is that there will be _multiple_ candidates
1717
to deploy on testing and it is a human choice to deploy. This means that
18-
GitVersion will build **the same semantic version** until that version is
18+
GitVersion will build __the same semantic version__ until that version is
1919
deployed. For instance:
2020

2121
* 1.1.0-2+1

mkdocs.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)