Skip to content

Commit

Permalink
Merge branch 'release/0.4.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackjacx committed Aug 24, 2023
2 parents 2174f2d + 481d859 commit f89e16c
Show file tree
Hide file tree
Showing 22 changed files with 473 additions and 337 deletions.
56 changes: 56 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-form.yml
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
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-form.yml
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
10 changes: 10 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
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
- [ ]
- [ ]
18 changes: 18 additions & 0 deletions .github/workflows/auto-assign-to-project.yml
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 }}
27 changes: 17 additions & 10 deletions .github/workflows/test.yml
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
4 changes: 4 additions & 0 deletions .spi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
version: 1
builder:
configs:
- documentation_targets: [Snap,Push,ASC]
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,17 @@

## [Unreleased]

## [0.4.0] - 2023-08-24Z
* [#60](https://github.com/blackjacx/assist/pull/60): Fix beta tester deletion - [@Blackjacx](https://github.com/blackjacx).
* [#58](https://github.com/blackjacx/assist/pull/58): Fix `xcTestRunFile` Name Generation - [@Blackjacx](https://github.com/blackjacx).
* [#57](https://github.com/blackjacx/assist/pull/57): Fix screenshot generation because of broken TestPlan parameter - [@Blackjacx](https://github.com/blackjacx).
* [#55](https://github.com/blackjacx/assist/pull/55): Remove platforms enum - [@Blackjacx](https://github.com/blackjacx).
* [#53](https://github.com/blackjacx/assist/pull/53): Handle "Shutting Down" simctl status - [@Blackjacx](https://github.com/blackjacx).
* [#52](https://github.com/blackjacx/assist/pull/52): Switch to String types when specifying devices - [@Blackjacx](https://github.com/blackjacx).

## [0.3.0] - 2022-09-02Z
* Upgrade to Swift 5.6 - [@Blackjacx](https://github.com/blackjacx).
* Adding iPhone 13 models (https://github.com/Blackjacx/Assist/commit/d3bb98bd703ef54c7849586cbe72ba5f829940af) - [@Blackjacx](https://github.com/blackjacx)

## [0.2.0] - 2022-03-14Z
* [#43](https://github.com/blackjacx/assist/pull/43): Async Await Support - [@Blackjacx](https://github.com/blackjacx).
Expand Down
Loading

0 comments on commit f89e16c

Please sign in to comment.