Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to GitHub #3

Merged
merged 4 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 0 additions & 41 deletions .gitea/ISSUE_TEMPLATE.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
---
name: Bug report
about: Template for bug reporting.
labels: "bug"
assignees: ""
about: Create a report to help us improve
---

<!--
You acknowledge, opening this issue, that you read Codeberg's ToS and the
content you upload meets to the requirements.

Please see
https://codeberg.org/husky/husky-man/src/branch/master/contributing.md.
Please see <CONTRIBUTING>.
-->

<!--
Expand All @@ -16,15 +18,20 @@ Please use `Preview` tab above to see final rendering of your report before
You can delete anything if it is not needed.
-->

## General description of the issue

...

## Husky information

- Husky version: ...
- Android version: ...
- Instance: ...

If you think it is an instance-related issue, please specify the instance.

## Describe your issue (steps to reproduce it)
- Instance: ...

## Steps to reproduce it

Please, describe the steps to reproduce the issue:

Expand All @@ -35,7 +42,7 @@ Please, describe the steps to reproduce the issue:

## Where did you get Husky from:

* [ ] F-Droid.
* [ ] Self-releases.
* [ ] Play Store.
* [ ] Self-compiled (specify tag/commit).
- [ ] F-Droid.
- [ ] Self-releases.
- [ ] Play Store.
- [ ] Self-compiled (specify tag/commit).
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
---
name: Feature request
labels: "enhancement"
assignees: ""
about: Suggest a feature for Husky.
---

<!--
You acknowledge, opening this issue, that you read Codeberg's ToS and the
content you upload meets to the requirements.

Please see
https://codeberg.org/husky/husky-man/src/branch/master/contributing.md.
Please see <CONTRIBUTING>.

-->

<!--
Expand All @@ -22,8 +25,8 @@ You can delete anything if it is not needed.

<!-- You can attach any media you consider. -->

## Other information
## Other relevant information

Please, point which backend this feature came from.
Please, point to which backend this feature came from.

- Software (Pleroma, Mastodon...): ...
- Back-end (Pleroma, Mastodon...): ...
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ Thank you for your contribution!

Please make sure that you:

- Use `git rebase` to update your branch with `master`. Do not use a merge
commit for that.
- Use `git rebase` to update your branch with `master`. Do not use merge
commits.

- If you **really** need to add logs, use `Timber`.

- If this PR references an issue, link the issue.

**Please erase this message from this PR, thank you!**

---
29 changes: 29 additions & 0 deletions .github/workflows/check_style.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Check style

on:
pull_request:

jobs:
check-style:
name: Ktlint check
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v4

- name: Setup Java
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'

- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v3

- name: Gradle Setup
- uses: gradle/actions/setup-gradle@v3

- name: Run ktlint
run: |
cd husky
./gradlew ktlintCheck