Skip to content

Commit

Permalink
Merge branch 'sample' of https://github.com/jahirfiquitiva/Frames int…
Browse files Browse the repository at this point in the history
…o sample
  • Loading branch information
jahirfiquitiva committed Dec 4, 2021
2 parents 08695d5 + a0b8d13 commit 8e92384
Show file tree
Hide file tree
Showing 6 changed files with 153 additions and 111 deletions.
103 changes: 103 additions & 0 deletions .github/ISSUE_TEMPLATE/1_bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
name: Report a Bug 🐛
description: File a bug report
labels: ["Status: Pending", "Type: Bug"]
body:
- type: markdown
attributes:
value: |
*Thanks for taking the time to fill out this bug report!*
---
- type: checkboxes
id: requirements
attributes:
label: Requirements
description: "Please make sure you have checked all of the following:"
options:
- label: I have verified there are no duplicate active or recent bugs, questions, or requests
required: true
- type: markdown
attributes:
value: |
---
# App and device information:
- type: input
id: version
attributes:
label: Frames Version
description: What version of Frames are you currently using?
placeholder: ex. 3.4.4
validations:
required: true
- type: input
id: android
attributes:
label: Android Version
description: What version of Android are you currently using?
placeholder: ex. 12.0.0
validations:
required: true
- type: input
id: manufacturer
attributes:
label: Device Manufacturer
description: What is the manufacturer of your device?
placeholder: ex. Samsung, Google
validations:
required: true
- type: input
id: device
attributes:
label: Device Name
description: What is the name of your device?
placeholder: ex. Pixel 6
validations:
required: true
- type: markdown
attributes:
value: |
---
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Please describe the bug in detail, clear and concisely.
validations:
required: true
- type: textarea
id: steps
attributes:
label: Reproduction Steps
description: Please share information on how to reproduce the bug or issue.
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected behavior
description: Please explain what you consider the expected behavior should be
validations:
required: false
- type: textarea
id: screenshots
attributes:
label: Screenshots or videos
description: Please share any screenshots or videos that could help understanding the issue
validations:
required: false
- type: textarea
id: logs
attributes:
label: Code and/or Logs
description: If you have logs for the issue, please share them (Use logcat to get them)
validations:
required: false
- type: textarea
id: context
attributes:
label: Additional context or info
description: Please share any additional details you consider relevant to solve the issue
validations:
required: false
47 changes: 47 additions & 0 deletions .github/ISSUE_TEMPLATE/2_feature_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Feature Request 💡
description: Request a new feature you would like to see as part of the dashboard
labels: ["Status: Pending", "Type: Feature Request"]
body:
- type: markdown
attributes:
value: |
*Thanks for taking the time to fill out this feature request!*
- type: markdown
attributes:
value: |
---
# App information:
- type: input
id: version
attributes:
label: Frames Version
description: What version of Frames are you currently using?
placeholder: ex. 3.4.4
validations:
required: true
- type: markdown
attributes:
value: |
---
- type: textarea
id: solution
attributes:
label: Describe the feature
description: Please describe in detail the feature you are requesting
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Describe alternatives you have considered
description: Please describe alternative solutions or feature you have considered
validations:
required: false
- type: textarea
id: additional
attributes:
label: Additional context or info
description: Add any other context, info, screenshots, videos, etc. about the feature request here
validations:
required: false
55 changes: 0 additions & 55 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

22 changes: 0 additions & 22 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

19 changes: 0 additions & 19 deletions .github/ci-gradle.properties

This file was deleted.

18 changes: 3 additions & 15 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,8 @@ jobs:
distribution: adopt
java-version: 11

- name: Delete modules cache
run: rm -f ~/.gradle/caches/modules-2/modules-2.lock

- name: Delete plugin resolution cache
run: rm -fr ~/.gradle/caches/*/plugin-resolution/

- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- name: Delete some caches
run: rm -f ~/.gradle/caches/modules-2/modules-2.lock; rm -fr ~/.gradle/caches/*/plugin-resolution/

- name: Cache Gradle
uses: actions/cache@v2
Expand All @@ -42,14 +36,8 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: Delete previous outputs
run: rm -rf ./app/build/outputs

- name: Make gradlew executable
run: chmod +x gradlew

- name: Make gradle wrapper executable
run: chmod +x gradle/wrapper/gradle-wrapper.jar
run: chmod +x gradlew; chmod +x gradle/wrapper/gradle-wrapper.jar

- name: Build
run: ./gradlew clean test --full-stacktrace

0 comments on commit 8e92384

Please sign in to comment.