-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
473 additions
and
337 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: [bug] | ||
assignees: [blackjacx] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out | ||
this bug report! | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Tell us, what happened? | ||
placeholder: Tell us what you see! | ||
value: "🔥" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: what-expected | ||
attributes: | ||
label: What did you expect? | ||
description: Tell us, what you expected to happen? | ||
placeholder: Tell us your thoughts! | ||
value: "🧐" | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version of our software are you running? | ||
placeholder: ex. 1.2.3 | ||
validations: | ||
required: true | ||
- type: input | ||
id: macos | ||
attributes: | ||
label: What macOS version are you seeing the problem on? | ||
placeholder: ex. macOS Ventura 13.0.1 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: | | ||
Please copy and paste any relevant log | ||
output. This will be automatically | ||
formatted into code, so no need for | ||
backticks. | ||
render: shell | ||
validations: | ||
required: false |
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,37 @@ | ||
name: Feature Request | ||
description: File a feature request | ||
title: "[Feat]: " | ||
labels: [feature] | ||
assignees: | ||
- blackjacx | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this form! | ||
- type: textarea | ||
id: what-expect | ||
attributes: | ||
label: What is your wish? | ||
description: Tell us, which functionality you expect to see? | ||
placeholder: Tell us what you need! | ||
value: "💡" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: urgency | ||
attributes: | ||
label: Urgency | ||
description: How urgent is you request? | ||
options: | ||
- Low | ||
- Medium | ||
- High | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: code-examples | ||
attributes: | ||
label: Code Example | ||
description: Please add a descriptive code example. This will be automatically formatted into code, so no need for backticks. | ||
render: swift |
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,10 @@ | ||
# Changes | ||
Description of your changes. | ||
|
||
|
||
# Issues | ||
- Resolve #1 | ||
|
||
# How To Test | ||
- [ ] … | ||
- [ ] … |
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,18 @@ | ||
name: Auto Assign to Project | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
pull_request: | ||
types: [opened] | ||
|
||
jobs: | ||
add-to-project: | ||
runs-on: ubuntu-latest | ||
name: Assign to "Backlog" Project | ||
steps: | ||
- name: Assign NEW issues and NEW pull requests to global project "Backlog" (1) | ||
uses: actions/add-to-project@main | ||
with: | ||
project-url: https://github.com/users/Blackjacx/projects/1 | ||
github-token: ${{ secrets.ACCESS_TOKEN }} |
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 |
---|---|---|
@@ -1,21 +1,28 @@ | ||
name: Test | ||
|
||
on: [push] | ||
on: | ||
push: | ||
branches: [ develop ] | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [macos-latest] | ||
|
||
os: ["macos-12"] | ||
swift: ["5.6.1"] | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build | ||
run: | | ||
swift --version | ||
swift build -v --enable-test-discovery | ||
- name: Test | ||
run: swift test -v --enable-test-discovery --parallel | ||
- uses: swift-actions/setup-swift@v1 | ||
with: | ||
swift-version: ${{ matrix.swift }} | ||
- uses: actions/checkout@v3 | ||
- name: Log Swift Version | ||
run: swift --version | ||
- name: Log Xcode Versions | ||
run: ls -la /Applications/ | ||
- name: Build for macOS | ||
run: swift build -v | ||
- name: Run Tests for macOS | ||
run: swift test -v |
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,4 @@ | ||
version: 1 | ||
builder: | ||
configs: | ||
- documentation_targets: [Snap,Push,ASC] |
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.