update
This commit is contained in:
parent
758a91c6fa
commit
ab8e800284
4 changed files with 0 additions and 123 deletions
2
.github/FUNDING.yml
vendored
2
.github/FUNDING.yml
vendored
|
|
@ -1,2 +0,0 @@
|
||||||
github: Domi04151309
|
|
||||||
custom: ['https://www.paypal.com/donate/?hosted_button_id=487FTCX52P9WA']
|
|
||||||
31
.github/ISSUE_TEMPLATE/bug-report.md
vendored
31
.github/ISSUE_TEMPLATE/bug-report.md
vendored
|
|
@ -1,31 +0,0 @@
|
||||||
---
|
|
||||||
name: Bug Report
|
|
||||||
about: Create a report to help improving the app
|
|
||||||
title: "[Bug Report] Your Title"
|
|
||||||
labels: bug
|
|
||||||
assignees: ''
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
**Description**
|
|
||||||
|
|
||||||
_A clear and concise description of what the bug is.
|
|
||||||
Please add steps to reproduce the behavior._
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary><b>Screenshots</b></summary>
|
|
||||||
|
|
||||||
_Add screenshots here to describe the problem._
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary><b>Logs</b></summary>
|
|
||||||
|
|
||||||
_Add a detailed stack trace / crash log here if applicable_
|
|
||||||
</details>
|
|
||||||
|
|
||||||
**Additional information**
|
|
||||||
|
|
||||||
- Android version: _System Settings > About > Android version (varies per device)_
|
|
||||||
- Home App version: _Settings > About > Version_
|
|
||||||
- Installation source: _Google Play / F-Drod / Own Build_
|
|
||||||
18
.github/ISSUE_TEMPLATE/feature-request.md
vendored
18
.github/ISSUE_TEMPLATE/feature-request.md
vendored
|
|
@ -1,18 +0,0 @@
|
||||||
---
|
|
||||||
name: Feature Request
|
|
||||||
about: Suggest an idea for this project
|
|
||||||
title: "[Feature Request] Your Title"
|
|
||||||
labels: enhancement
|
|
||||||
assignees: ''
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
**Describe the solution you'd like**
|
|
||||||
|
|
||||||
_A clear and concise description of what you want to happen._
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary><b>Additional context</b></summary>
|
|
||||||
|
|
||||||
_Add any other context or screenshots about the feature request here._
|
|
||||||
</details>
|
|
||||||
72
.github/workflows/ci.yml
vendored
72
.github/workflows/ci.yml
vendored
|
|
@ -1,72 +0,0 @@
|
||||||
name: Continuous Integration
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: ci-${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
ktlint:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
timeout-minutes: 5
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Install
|
|
||||||
run: |
|
|
||||||
curl -sSLO https://github.com/pinterest/ktlint/releases/download/1.0.1/ktlint
|
|
||||||
chmod a+x ktlint
|
|
||||||
sudo mv ktlint /usr/local/bin/
|
|
||||||
- name: Run
|
|
||||||
run: ktlint --reporter sarif -l none > ktlint.sarif
|
|
||||||
- name: Upload SARIF
|
|
||||||
uses: github/codeql-action/upload-sarif@v3
|
|
||||||
if: success() || failure()
|
|
||||||
with:
|
|
||||||
sarif_file: ktlint.sarif
|
|
||||||
detekt:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
timeout-minutes: 5
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Setup Java
|
|
||||||
uses: actions/setup-java@v4
|
|
||||||
with:
|
|
||||||
distribution: temurin
|
|
||||||
java-version: 17
|
|
||||||
- name: Setup Gradle
|
|
||||||
uses: gradle/actions/setup-gradle@v3
|
|
||||||
- name: Run
|
|
||||||
run: |
|
|
||||||
chmod +x gradlew
|
|
||||||
./gradlew detekt
|
|
||||||
- name: Upload SARIF
|
|
||||||
uses: github/codeql-action/upload-sarif@v3
|
|
||||||
if: success() || failure()
|
|
||||||
with:
|
|
||||||
sarif_file: app/build/reports/detekt/detekt.sarif
|
|
||||||
- name: Job Summary
|
|
||||||
if: success() || failure()
|
|
||||||
run: cat ./app/build/reports/detekt/detekt.md >> $GITHUB_STEP_SUMMARY
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
timeout-minutes: 10
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Setup Java
|
|
||||||
uses: actions/setup-java@v4
|
|
||||||
with:
|
|
||||||
distribution: temurin
|
|
||||||
java-version: 17
|
|
||||||
- name: Setup Gradle
|
|
||||||
uses: gradle/actions/setup-gradle@v3
|
|
||||||
- name: Run
|
|
||||||
run: |
|
|
||||||
chmod +x gradlew
|
|
||||||
./gradlew build
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue