diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
deleted file mode 100644
index 187e6397f91d32c17f26b999d25f1eb8326310d7..0000000000000000000000000000000000000000
--- a/.github/FUNDING.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-github: ["apognu"]
-custom: [
-  "https://www.paypal.me/apognu"
-]
diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml
deleted file mode 100644
index 0ad66b6cd1cc8fdfb7a90b39313ac05dab6c098c..0000000000000000000000000000000000000000
--- a/.github/workflows/develop.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: Continuous develop build
-on:
-  push:
-    branches:
-      - develop
-jobs:
-  build:
-    runs-on: ubuntu-latest
-    steps:
-    - uses: actions/checkout@v2
-      with:
-        fetch-depth: 0
-    - name: set up JDK 1.8
-      uses: actions/setup-java@v1
-      with:
-        java-version: 1.8
-    - name: Build with Gradle
-      run: |
-        mkdir -p /home/runner/.android && touch /home/runner/.android/repositories.cfg
-        ./gradlew assembleDebug
-    - name: Create release
-      uses: eine/tip@gha-tip
-      with:
-        token: ${{ secrets.GITHUB_TOKEN }}
-        cwd: ${{ github.workspace }}
-        files: app/build/outputs/apk/debug/app-debug.apk
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
deleted file mode 100644
index 471a332c8d790d307959dd9d2e7ae6fd88ac1724..0000000000000000000000000000000000000000
--- a/.github/workflows/release.yml
+++ /dev/null
@@ -1,45 +0,0 @@
-name: Release build
-on:
-  push:
-    tags:
-      - "[0-9]+.[0-9]+.[0-9]+"
-jobs:
-  build:
-    runs-on: ubuntu-latest
-    steps:
-    - uses: actions/checkout@v2
-      with:
-        fetch-depth: 0
-        ref: ${{ github.ref }}
-    - name: Setting up publication keystore
-      run: |
-        echo "${{ secrets.ANDROID_KEYSTORE }}" > ${HOME}/release.jks.asc
-        gpg -q --yes --batch -d --passphrase="${{ secrets.ENCRYPTION_KEY }}" -o ${HOME}/release.jks ${HOME}/release.jks.asc
-        echo -e "signing.store=${HOME}/release.jks\nsigning.key_passphrase=${{ secrets.ANDROID_KEYSTORE_KEY_PASSPHRASE }}\nsigning.alias=release\nsigning.store_passphrase=${{ secrets.ANDROID_KEYSTORE_STORE_PASSPHRASE }}" > local.properties
-    - name: Set up JDK 1.8
-      uses: actions/setup-java@v1
-      with:
-        java-version: 1.8
-    - name: Build Otter
-      run: |
-        mkdir -p /home/runner/.android && touch /home/runner/.android/repositories.cfg
-        ./gradlew assembleRelease
-    - name: Create Otter's release
-      id: create_release
-      uses: actions/create-release@v1
-      env:
-        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-      with:
-        tag_name: ${{ github.ref }}
-        release_name: ${{ github.ref }}
-        draft: false
-        prerelease: true
-    - name: Upload Otter's artifact (full version)
-      uses: actions/upload-release-asset@v1
-      env:
-        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-      with:
-        upload_url: ${{ steps.create_release.outputs.upload_url }}
-        asset_path: app/build/outputs/apk/release/app-release.apk
-        asset_name: otter-full-release.apk
-        asset_content_type: application/zip
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.gitlab/issue_templates/bug_report.md
similarity index 100%
rename from .github/ISSUE_TEMPLATE/bug_report.md
rename to .gitlab/issue_templates/bug_report.md