Skip to content

Commit 5d0518e

Browse files
authored
Merge pull request #44 from bUnit-dev/release/v2.8
Release of new minor version v2.8
2 parents 7b60100 + c631daf commit 5d0518e

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,16 @@ jobs:
102102
draft: false
103103
prerelease: ${{ env.NBGV_PublicRelease == 'False' }}
104104

105-
- name: ⏩ Merge stable with main, push main
105+
- name: ⏩ Merge stable with main, push main
106+
id: mergeMainline
107+
continue-on-error: true
106108
run: |
107109
git checkout main
108110
git merge -S stable
109111
git push origin main
110112
111113
- name: ⏭ Create pull request from stable to main when direct merge fails
112-
if: ${{ failure() }}
114+
if: steps.mergeMainline.outcome == 'failure'
113115
uses: thomaseizinger/create-pull-request@1.0.0
114116
env:
115117
GITHUB_TOKEN: ${{ secrets.BUNIT_BOT_TOKEN }}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
test
11+
1012
## [2.7.0] - 2021-04-29
1113

1214
Added workflow diagram.

src/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class Program
77
static void Main(string[] args)
88
{
99
Console.WriteLine("Hello World from Twitch!");
10-
Console.WriteLine("Hello World from Twitch!");
10+
Console.WriteLine("Hello World from Twitch!");dddd
1111
}
1212
}
1313
}

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "2.7",
3+
"version": "2.8",
44
"assemblyVersion": {
55
"precision": "revision"
66
},

0 commit comments

Comments
 (0)