Skip to content

Commit

Permalink
imp - Made issue templates a bit better
Browse files Browse the repository at this point in the history
---

We've added some of the changes that are to be made to the issue
templates.

---

Type: imp
Breaking: False
Doc Required: False
Backport Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Dec 16, 2024
1 parent 1ebc80e commit a3b6ceb
Show file tree
Hide file tree
Showing 6 changed files with 75 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/ask-a-question.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Ask a question
about: Ask us anything about BskyId.
about: Ask us anything about this project.
title: "[Q&A] [FeatureName] - [Question]"
labels: ''
assignees: ''
Expand Down
10 changes: 7 additions & 3 deletions .github/ISSUE_TEMPLATE/report-an-issue.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Report an issue
about: Thank you for reporting a bug to us.
title: "[BUG] [featureName] - [issue]"
title: "[BUG] [FeatureName] - [Issue]"
labels: ''
assignees: ''

Expand All @@ -26,5 +26,9 @@ assignees: ''
1. Observe a happening instead of z

### Version
<!-- This should be in this format: <Version> (<Commit>) (<Branch>). Commit number and branch required for development builds. -->
Version `0.0.0 0000000000000000000000000000000000000000 main`
<!-- Replace all placeholders. Project version should be in this format: <Version> (<Commit>) (<Branch>). Commit number and branch required for development builds. -->
| Key | Value
|:-----------------|:------
| Project version | `0.0.0 0000000000000000000000000000000000000000 main`
| Operating system | Windows XX build XXXXX.XXXX
| .NET version | .NET X.X / .NET Framework X.X / Mono X.X
9 changes: 7 additions & 2 deletions .github/ISSUE_TEMPLATE/request-a-feature.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Request a feature
about: Suggest an idea to us.
title: "[ADD] [FeatureName] - [Feature]"
title: "[REQ] [FeatureName] - [Feature]"
labels: ''
assignees: ''

Expand All @@ -16,4 +16,9 @@ assignees: ''
- [ ] New API functions
- [ ] Others

### Have you tried doing it? If so, attach a mod file.
### Have you tried doing it? Place test cases here.
<!-- If you have tried implementing this new feature, please place test cases here, and make a fork of this project with your changes. Please respect everyone's privacy and avoid posting confidential and/or private information; make dummy data instead that implements your suggestion. -->
- [ ] Yes, I have
- [ ] No, but I will do it
- [ ] No, it's a suggestion to you

21 changes: 0 additions & 21 deletions .github/issue_template.md

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/build-rel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build Project (Release)

on:
push:
pull_request:

jobs:
build:
strategy:
matrix:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.runs-on }}

steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Solution Compilation (Windows)
if: matrix.runs-on == 'windows-latest'
run: cd tools ; ./build.cmd ; cd ..
- name: Solution Compilation (Unix)
if: matrix.runs-on != 'windows-latest'
run: make
- name: Testing
run: dotnet test --no-build --configuration Release

30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build Project (Debug)

on:
push:
pull_request:

jobs:
build:
strategy:
matrix:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.runs-on }}

steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Solution Compilation (Windows)
if: matrix.runs-on == 'windows-latest'
run: cd tools ; ./build.cmd Debug ; cd ..
- name: Solution Compilation (Unix)
if: matrix.runs-on != 'windows-latest'
run: make dbg
- name: Testing
run: dotnet test --no-build --configuration Debug

0 comments on commit a3b6ceb

Please sign in to comment.