From 8a033857a3a09fff655f6e3e92fee3deb0592ebb Mon Sep 17 00:00:00 2001 From: tomato Date: Mon, 26 May 2025 00:57:19 -0400 Subject: [PATCH] remove github metadata this confuses the mirror --- .github/FUNDING.yml | 4 ---- .github/issue_template.md | 3 --- .github/pull_request_template.md | 5 ----- .github/workflows/ci.yml | 15 --------------- 4 files changed, 27 deletions(-) delete mode 100644 .github/FUNDING.yml delete mode 100644 .github/issue_template.md delete mode 100644 .github/pull_request_template.md delete mode 100644 .github/workflows/ci.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index fb01171..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,4 +0,0 @@ -# These are supported funding model platforms - -github: daattali -patreon: DeanAttali diff --git a/.github/issue_template.md b/.github/issue_template.md deleted file mode 100644 index bbe5014..0000000 --- a/.github/issue_template.md +++ /dev/null @@ -1,3 +0,0 @@ -Please only submit feature suggestions or bug reports if you believe something is broken. - -If you need help, or if you enjoy Beautiful Jekyll and want to support it, please upgrade to one of our plans: https://beautifuljekyll.com/plans/ diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index a30e7e4..0000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,5 +0,0 @@ -Please note that if you are trying to update **your** website, this is the wrong place to do so. Please carefully follow the Beautiful Jekyll instructions (found at https://github.com/daattali/beautiful-jekyll#readme) and make sure you submit changes to **your** version of the project. - -If your intention is to submit a Pull Request, please describe what your pull request achieves. - -Thank you! diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index dcb9d5a..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: Beautiful Jekyll CI -on: [push, pull_request] -jobs: - build: - name: Build Jekyll - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Build the site in the jekyll/builder container - run: | - export JEKYLL_VERSION=3.8 - docker run \ - -v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \ - -e PAGES_REPO_NWO=${{ github.repository }} \ - jekyll/builder:$JEKYLL_VERSION /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"