-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' of https://github.com/Crazy-Marvin/EllaThe…
…Game into development
- Loading branch information
Showing
2,764 changed files
with
6,310 additions
and
290,865 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 @@ | ||
|
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,60 @@ | ||
# Contributing to Ella - The Game | ||
|
||
Thank you for choosing to contribute to our project! We appreciate your input and want to make contributing to this project as simple and transparent as possible, whether it's: | ||
|
||
- Reporting a bug | ||
- Discussing the current state of the code | ||
- Submitting a fix | ||
- Proposing new features | ||
- Becoming a maintainer | ||
|
||
Check out the [README](https://github.com/Crazy-Marvin/EllaTheGame/blob/trunk/README.md) file for an overview of the project. | ||
|
||
## Any contributions you make will be under the Apache License 2.0 | ||
|
||
When you submit code changes, they are subject to the same [MIT License](https://choosealicense.com/licenses/mit/) as the project. If you have any concerns, please contact the project maintainers. | ||
|
||
## How to contribute code | ||
|
||
These are the steps you should take to contribute to this project: | ||
|
||
- Create an issue on the Github repository to discuss the proposed change. | ||
- Fork the repository and contribute to the forked repo in a new branch `yourfeature` | ||
- Send a pull request to the origin `development` branch be reviewed. | ||
|
||
Use your preferred editor to edit the source. | ||
|
||
Following a successful PR review, the project maintainer will merge your contribution into the project. | ||
|
||
Releases are based on the `trunk` branch. A maintainer will create a tagged release and attach a signed .apk. The .apk will go to Google Play too then. | ||
|
||
Hooray! You have successfully contributed to Ella - The Game! | ||
|
||
## How to contribute translations | ||
|
||
The translation is managed by Weblate which is accessible under [https://hosted.weblate.org/engage/ella-the-game/](https://hosted.weblate.org/engage/ella-the-game/). | ||
We have two components: | ||
- `Ella - The Game` for the app itself | ||
- `Metadata` for the store description (Google Play) and changelogs | ||
- `Glossary` is not used yet | ||
|
||
Hooray! You have successfully contributed to Ella - The Game! | ||
|
||
## How to open a bug report or feature request | ||
|
||
We use GitHub issues for the management of issues, bugs and features. You may open an issue by following [https://github.com/Crazy-Marvin/EllaTheGame/issues/new/choose](https://github.com/Crazy-Marvin/EllaTheGame/issues/new/choose). | ||
|
||
Hooray! You have successfully contributed to Ella - The Game! | ||
|
||
## How to report a security vulnerability | ||
|
||
Please send me an e-mail to [[email protected]](mailto:[email protected]?subject=Ella%20-%20The%20Game%20Security%20Vulnerability). I may give you information how to communicate encrypted. More details may be found in the [`SECURITY.md`](https://github.com/Crazy-Marvin/EllaTheGame/blob/trunk/.github/SECURITY.md) | ||
|
||
Hooray! You have successfully contributed to Ella - The Game! | ||
|
||
## How to contribute money (donate) | ||
|
||
Please send an e-mail to [[email protected]](mailto:[email protected]?subject=Ella%20-%20The%20Game%20Donation) to discuss the details. | ||
You may find some options on [this page](https://poopjournal.rocks/blog/donate/) too. | ||
|
||
Hooray! You have successfully contributed to Ella - The Game! |
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 @@ | ||
custom: ["https://poopjournal.rocks/blog/donate/"] |
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,2 @@ | ||
Please report security vulnerabilities to [[email protected]](mailto:[email protected]?subject=Flashy%20Security%20Vulnerability). | ||
It would be awesome if you could prepare a fix too. |
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 @@ | ||
Please send an e-mail to [[email protected]](mailto:[email protected]?subject=Flashy%20Support) or open issue here on GitHub. |
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,33 @@ | ||
name: CI | ||
on: push | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "📥 Check-out" | ||
uses: actions/checkout@v2 | ||
- name: "🧪 Gradle Wrapper Validation" | ||
uses: gradle/wrapper-validation-action@v1 | ||
- name: "🧰 Install JDK" | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'adopt' | ||
java-version: 11 | ||
java-package: jdk | ||
- name: "🧰 Install Android SDK" | ||
uses: malinskiy/action-android/install-sdk@release/0.1.4 | ||
with: | ||
acceptLicense: yes | ||
- name: "🏗 Build" | ||
run: ./gradlew assembleDebug | ||
- name: "🧪 Code coverage" | ||
run: ./gradlew jacocoTestReport | ||
- name: "📤 Upload code coverage" | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
yml: .codecov.yml | ||
- name: "🧪 Android LINT" | ||
run: ./gradlew lint | ||
- name: "🧪 Unit test" | ||
run: ./gradlew test |
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,54 @@ | ||
name: "CodeQL" | ||
|
||
on: | ||
push: | ||
branches: [development, master] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: [development] | ||
schedule: | ||
- cron: '0 9 * * 4' | ||
|
||
jobs: | ||
analyse: | ||
name: Analyse | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
with: | ||
# We must fetch at least the immediate parents so that if this is | ||
# a pull request then we can checkout the head. | ||
fetch-depth: 2 | ||
|
||
# If this run was triggered by a pull request event, then checkout | ||
# the head of the pull request instead of the merge commit. | ||
- run: git checkout HEAD^2 | ||
if: ${{ github.event_name == 'pull_request' }} | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v1 | ||
# Override language selection by uncommenting this and choosing your languages | ||
# with: | ||
# languages: go, javascript, csharp, python, cpp, java | ||
|
||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). | ||
# If this step fails, then you should remove it and run the build manually (see below) | ||
- name: Autobuild | ||
uses: github/codeql-action/autobuild@v1 | ||
|
||
# ℹ️ Command-line programs to run using the OS shell. | ||
# 📚 https://git.io/JvXDl | ||
|
||
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines | ||
# and modify them (or add more) to build your code if your project | ||
# uses a compiled language | ||
|
||
#- run: | | ||
# make bootstrap | ||
# make release | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v1 |
Oops, something went wrong.