diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 6914934ea..000000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1 +0,0 @@ -patreon: akaunting \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index fd326bf68..000000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,21 +0,0 @@ -Please, submit only real issues. Use the forum for support, feature requests, proposals, new versions, help etc. https://akaunting.com/forum - -### Steps to reproduce the issue - - - -### Expected result - - - -### Actual result - - - -### System information (Akaunting, PHP versions) - - - -### Additional comments - - diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml deleted file mode 100644 index c58a94594..000000000 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ /dev/null @@ -1,63 +0,0 @@ -name: Bug report -description: File a bug report related to Akaunting -body: - - type: markdown - attributes: - value: | - Thanks for taking the time to fill out this bug report! - - type: input - id: akaunting - attributes: - label: Akaunting version - description: "Please provide the full Akaunting version of your installation." - placeholder: "2.1.20" - validations: - required: true - - type: input - id: php - attributes: - label: PHP version - description: "Please provide the full PHP version that is powering Akaunting." - placeholder: "7.4.10" - validations: - required: true - - type: input - id: os - attributes: - label: Operating system - description: "Which operating system do you use? Please provide the version as well." - placeholder: "Ubuntu 20.04" - validations: - required: true - - type: textarea - id: steps - attributes: - label: Steps to reproduce - description: Which steps do we need to take to reproduce this error? - validations: - required: true - - type: textarea - id: expected - attributes: - label: Expected result - description: What is the expected result? - validations: - required: true - - type: textarea - id: actual - attributes: - label: Actual result - description: What is the actual result? - validations: - required: true - - type: textarea - id: comments - attributes: - label: Additional comments - description: Anything else we should know about? - - type: textarea - id: logs - attributes: - label: Relevant log output - description: Copy and paste any relevant log output. No need for backticks. - render: shell diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index 3cb53d44c..000000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1,11 +0,0 @@ -blank_issues_enabled: false -contact_links: - - name: Feature request - url: https://akaunting.com/forum - about: 'For ideas or feature requests, start a new discussion' - - name: Support, help, and other - url: https://akaunting.com/support - about: 'This repository is only for reporting bugs' - - name: Documentation - url: https://github.com/akaunting/docs - about: For documentation improvements, open a pull request at the akaunting/docs repository diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml deleted file mode 100644 index 8622281c2..000000000 --- a/.github/workflows/tests.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: Tests - -on: - push: - pull_request: - schedule: - - cron: '0 0 * * *' - workflow_dispatch: - -jobs: - tests: - - name: PHP ${{ matrix.php }} - - runs-on: ubuntu-latest - - strategy: - matrix: - php: ['8.1', '8.2'] - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Cache Composer - uses: actions/cache@v1 - with: - path: ~/.composer/cache/files - key: php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - extensions: bcmath, ctype, dom, fileinfo, intl, gd, json, mbstring, pdo, pdo_sqlite, openssl, sqlite, xml, zip - coverage: none - - - name: Copy .env - run: cp .env.testing .env - - - name: Install NPM - run: npm install - - - name: Compile assets - run: npm run production - - - name: Install Composer - run: composer test - - - name: Execute tests - run: php artisan test --parallel diff --git a/.github/workflows/translations.yml b/.github/workflows/translations.yml deleted file mode 100644 index aba2343b3..000000000 --- a/.github/workflows/translations.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Translations - -on: - schedule: - - cron: '0 0 * * *' - workflow_dispatch: - -jobs: - sync: - name: Sync - - runs-on: ubuntu-latest - - steps: - - - name: Checkout - uses: actions/checkout@v2 - - - name: Sync with Crowdin - uses: crowdin/github-action@master - with: - upload_sources: true - upload_translations: true - download_translations: true - skip_untranslated_files: true - - source: 'resources/lang/en-GB/*.php' - translation: 'resources/lang/%locale%/%original_file_name%' - - localization_branch_name: 'translations' - commit_message: 'new crowdin translations' - pull_request_title: 'New Crowdin translations' - pull_request_body: 'https://crowdin.com/project/akaunting' - pull_request_labels: 'Translation' - - project_id: ${{ secrets.CROWDIN_CORE_ID }} - token: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}