diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..c145050 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,2 @@ +patreon: tanersener +custom: ['https://buymeacoff.ee/tanersener','https://paypal.me/teodosiyminchev'] \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/issue-template.md b/.github/ISSUE_TEMPLATE/issue-template.md new file mode 100644 index 0000000..0e52d04 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue-template.md @@ -0,0 +1,36 @@ +--- +name: Issue Template about: Create an issue to help us improve + +--- + +**Description** +Description of what the issue is about. + +**Expected behavior** +What you expected to happen. + +**Current behavior** +What happened. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Logs** +Post logs here or paste them to [Ghostbin](https://ghostbin.co) and insert the link here. + +**Environment** + +- Platform: [e.g. Android/iOS/macOS/tvOS] +- + +Architecture: [arm-v7a, arm-v7a-neon, arm64-v8a, x86, x86_64, armv7, armv7s, arm64, arm64-mac-catalyst, arm64-simulator, arm64e, i386, x86-64, x86-64-mac-catalyst ] + +- Version (if applicable) [e.g. v4.3] +- Source branch (if applicable) [e.g. master, development, v4.3] +- Xcode version (if applicable) [e.g. 7.3.1, 9.0.1, 14.3] +- Cocoapods version (if applicable) [e.g. 1.9.1] +- Android Studio version (if applicable) [e.g. 4.0] +- Android NDK version (if applicable) [e.g. 16b, r17c, r21d] + +**Other** +Add any other context about the problem here. diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 0000000..eaed1e8 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,19 @@ +name: Mark stale issues and pull requests + +on: + schedule: + - cron: "0 0 * * *" + +jobs: + stale: + + runs-on: ubuntu-latest + + steps: + - uses: actions/stale@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.' + stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.' + stale-issue-label: 'no-issue-activity' + stale-pr-label: 'no-pr-activity'