From 9095cc18cce651122ebd5ab04cf6c531dcef688a Mon Sep 17 00:00:00 2001 From: Xenon Date: Thu, 29 Aug 2024 11:40:28 +0000 Subject: [PATCH] Remove pointless files --- .github/FUNDING.yml | 2 -- .github/workflows/main.yml | 28 ---------------------------- 2 files changed, 30 deletions(-) delete mode 100644 .github/FUNDING.yml delete mode 100644 .github/workflows/main.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 2be31e1d..00000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,2 +0,0 @@ -custom: https://paypal.me/imjiayang -custom: https://cash.app/$payjiayang diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 6c82c547..00000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Prettier - -on: - pull_request: - branches: [main] - push: - branches: - - main - -jobs: - prettier: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - # Make sure the actual branch is checked out when running on pull requests - ref: ${{ github.head_ref }} - # This is important to fetch the changes to the previous commit - fetch-depth: 0 - - - name: Prettify code - uses: creyD/prettier_action@v4.3 - with: - # This part is also where you can pass other options, for example: - prettier_options: --write **/*.{js,md} - only_changed: True