-
-
Notifications
You must be signed in to change notification settings - Fork 128
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
139 changed files
with
3,630 additions
and
1,011 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
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,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: 🚀 Feature Request | ||
url: https://github.com/openhab/openhab-ios/discussions/new?category_id=27710982 | ||
about: Share ideas for new features | ||
- name: ❓ Ask a Question | ||
url: https://github.com/openhab/openhab-ios/discussions/new?category_id=27710981 | ||
about: Ask the community for help |
This file was deleted.
Oops, something went wrong.
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,42 @@ | ||
--- | ||
name: 😱 Regression | ||
about: If a recent release broke a feature | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
--- | ||
|
||
**New regression checklist** | ||
|
||
- [ ] I updated the iOS openHAB app to the latest [TestFlight](https://testflight.apple.com/join/563WBakc) version. | ||
- [ ] I read the [Contribution Guidelines](https://github.com/openhab/openhab-ios/blob/develop/CONTRIBUTING.md) | ||
- [ ] I searched for [existing GitHub issues](https://github.com/openhab/openhab-ios/issues) | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**App (please complete the following information):** | ||
- Breaking version: [e.g. `2.1.0 (12)`] | ||
- Last working version: [e.g. `2.2.0 (13)`] | ||
|
||
**Smartphone (please complete the following information):** | ||
- Device: [e.g. `iPhoneXR`] | ||
|
||
**openHAB (please complete the following information):** | ||
- Version [e.g. `2.5.8`] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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,65 @@ | ||
name: Publish on TestFlight | ||
|
||
on: | ||
push: | ||
branches: [develop] | ||
|
||
jobs: | ||
publish_app: | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Cache cocoapods dependencies | ||
uses: actions/cache@v2 | ||
env: | ||
cache-name: cache-cocoapods-dependencies | ||
with: | ||
path: Pods | ||
key: ${{ runner.os }}-pods-${{ env.cache-name }}-${{ hashFiles('**/Podfile.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-pods-${{ env.cache-name }}- | ||
- name: Setup Cocoapods | ||
uses: maxim-lobanov/[email protected] | ||
with: | ||
podfile-path: Podfile.lock | ||
|
||
- name: Check Pods existence | ||
id: check_files | ||
uses: andstor/file-existence-action@v1 | ||
with: | ||
files: "Pods" | ||
|
||
- name: Install Dependencies | ||
if: steps.check_files.outputs.files_exists == 'false' | ||
run: | | ||
pod install --repo-update | ||
shell: bash | ||
|
||
- name: SSH Config | ||
run: echo -e "Host github.com\n\tStrictHostKeyChecking no\n" > ~/.ssh/config | ||
|
||
- name: SSH Keys | ||
uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: | | ||
${{ secrets.MATCH_GIT_PRIVATE_KEY }} | ||
- name: fastlane iOS beta | ||
env: | ||
FASTLANE_USER: ${{ secrets.FASTLANE_USER }} | ||
FASTLANE_PASSWORD: ${{ secrets.FASTLANE_PASSWORD }} | ||
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }} | ||
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} | ||
SIGNING_IDENTITY: ${{ secrets.SIGNING_IDENTITY }} | ||
OH_CROWDIN_PROJECT_ID: ${{ secrets.OH_CROWDIN_PROJECT_ID }} | ||
OH_CROWDIN_USERNAME: ${{ secrets.OH_CROWDIN_USERNAME }} | ||
OH_CROWDIN_ACCOUNT_KEY: ${{ secrets.OH_CROWDIN_ACCOUNT_KEY }} | ||
LANG: en_US.UTF-8 | ||
LC_ALL: en_US.UTF-8 | ||
uses: maierj/[email protected] | ||
with: | ||
lane: beta | ||
skip-tracking: true |
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
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
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.