Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add release.yml #768

Merged
merged 3 commits into from
Mar 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 1 addition & 21 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,6 @@
<!--
What issue does this PR address? (for example, #1234)
-->

Closes #[issue number]

## Description
<!--
A summary of the changes made along with any other information that would be helpful to a reviewer such as potential tradeoffs or alternative approaches you considered.
-->
-

### Screenshots

<!--
If this PR touches the UI layer of the app, please include screenshots or animated gifs to show the changes.
-->

## Release notes

<!--
You can leave this blank if you're not sure.
If you don't believe this PR needs to be mentioned in the release notes, write "Notes: no-notes".
-->

Notes:
Notes:
17 changes: 17 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
changelog:
categories:
- title: Breaking Changes
labels:
- breaking-change
- title: New Features
labels:
- feature
- title: Bug fixes
labels:
- bug
- title: Dependencies
labels:
- dependencies
- title: Other Changes
labels:
- "*"
16 changes: 6 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: CI
on:
pull_request:
workflow_dispatch:
env:
CONFIGURATION: 'Release'
jobs:
build-and-test:
runs-on: windows-latest
Expand All @@ -13,11 +11,9 @@ jobs:
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: .NET info
run: dotnet --info
- name: .NET restore
run: dotnet restore
- name: .NET build
run: dotnet build Bravo.sln --configuration ${{ env.CONFIGURATION }} --no-restore
- name: .NET test
run: dotnet test Bravo.sln --configuration ${{ env.CONFIGURATION }} --no-build --verbosity normal
- name: dotnet restore
run: dotnet restore
- name: dotnet build
run: dotnet build Bravo.sln --configuration Release --no-restore
- name: dotnet test
run: dotnet test Bravo.sln --configuration Release --no-build --verbosity normal
Loading