Skip to content

Commit 76a9ecb

Browse files
committed
#4017 - cleanup
1 parent 9ea1b88 commit 76a9ecb

File tree

5 files changed

+11
-18
lines changed

5 files changed

+11
-18
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/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)