-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/6.0.0: (40 commits) (maint) Changed severity on brace formatting (maint) Add rule to error on unnecessary usings (doc) Add all missing documentation (test) Added basic test script (maint) Create .git-blame-ignore-revs file (maint) Applied StyleCop/EditorConfig suggestions (maint) Add StyleCop.Analyzers package (maint) Add StyleCop and EditorConfig files (build) Bump to latest build image (#8) Remove token from AppVeyor file All classes should be public (especially AppVeyorClient). (maint) Ensure README is shown on nuget.org (maint) Correct name of project (maint) Add Readme to NuGet Package (maint) Fix markdonwlint warnings (#49) Add link to GitHub Discussions (#50) Remove old icons (maint) Add recommended tags to csproj file (#87) Update to Cake 2.0.0 (maint): Bump Cake.Testing from 1.0.0 to 2.2.0 ... # Conflicts: # src/Cake.AppVeyor.Tests/AppVeyorTests.cs # src/Cake.AppVeyor.Tests/Cake.AppVeyor.Tests.csproj # src/Cake.AppVeyor.Tests/Keys.cs
- Loading branch information
Showing
42 changed files
with
1,042 additions
and
378 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#(maint) Applied StyleCop/EditorConfig suggestions | ||
2f9719b9756358c8e5199efb7895ea194ffc0191 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,23 +11,23 @@ jobs: | |
|
||
steps: | ||
- name: Checkout the requested branch | ||
uses: actions/checkout@v2.3.4 | ||
uses: actions/checkout@v3 | ||
- name: Fetch all tags and branches | ||
run: git fetch --prune --unshallow | ||
- name: Cache Tools | ||
uses: actions/cache@v2.1.4 | ||
uses: actions/cache@v3 | ||
with: | ||
path: tools | ||
key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }} | ||
- name: Set up git version | ||
if: ${{ !contains(github.ref, '/hotfix/') && !contains(github.ref, '/release/') }} | ||
uses: gittools/actions/gitversion/[email protected].9 | ||
uses: gittools/actions/gitversion/[email protected].13 | ||
with: | ||
versionSpec: "5.x" | ||
- name: Run git version | ||
if: ${{ !contains(github.ref, '/hotfix/') && !contains(github.ref, '/release/') }} | ||
id: gitversion | ||
uses: gittools/actions/gitversion/[email protected].9 | ||
uses: gittools/actions/gitversion/[email protected].13 | ||
- name: Create release branch ${{ github.event.inputs.version }} | ||
if: ${{ steps.gitversion.outputs.majorMinorPatch }} | ||
run: git switch -c release/${{ steps.gitversion.outputs.majorMinorPatch }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.