From 0f6948d648773d628bdd5a5c461ef23e98020d55 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 10 Sep 2022 12:33:20 +0200 Subject: [PATCH] Remove .github folder. --- .github/ISSUE_TEMPLATE/bug_report.md | 13 --------- .github/ISSUE_TEMPLATE/config.yml | 6 ---- .github/ISSUE_TEMPLATE/enhancement_request.md | 13 --------- .github/PULL_REQUEST_TEMPLATE.md | 7 ----- .github/workflows/ci.yml | 29 ------------------- 5 files changed, 68 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md delete mode 100644 .github/ISSUE_TEMPLATE/config.yml delete mode 100644 .github/ISSUE_TEMPLATE/enhancement_request.md delete mode 100644 .github/PULL_REQUEST_TEMPLATE.md delete mode 100644 .github/workflows/ci.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index daa97e5..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -name: Bug report -about: Report incorrect or outdated documentation -title: '' -labels: bug -assignees: '' ---- - -**Your Godot version:** - -**Issue description:** - -**URL to the documentation page:** diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index cefdbcb..0000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1,6 +0,0 @@ -blank_issues_enabled: false - -contact_links: - - name: Godot community channels - url: https://godotengine.org/community - about: Please ask for technical support on one of the other community channels, not here. diff --git a/.github/ISSUE_TEMPLATE/enhancement_request.md b/.github/ISSUE_TEMPLATE/enhancement_request.md deleted file mode 100644 index d6b2f3c..0000000 --- a/.github/ISSUE_TEMPLATE/enhancement_request.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -name: Enhancement request -about: Suggest new documentation or improving existing documentation -title: '' -labels: enhancement -assignees: '' ---- - -**Your Godot version:** - -**Issue description:** - -**URL to the documentation page (if already existing):** diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index a4f90c3..0000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,7 +0,0 @@ - diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 2817110..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Continuous integration -on: - push: - pull_request: - -jobs: - build: - runs-on: ubuntu-20.04 - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Install dependencies - run: | - # Install tools used by `_tools/format.sh`. - sudo apt-get -qq update - sudo apt-get -qq install dos2unix recode - sudo pip3 install -r requirements.txt - sudo pip3 install codespell - - - name: Linter checks - run: | - bash _tools/format.sh - codespell -I _tools/codespell-ignore.txt -x _tools/codespell-ignore-lines.txt {about,community,development,getting_started,tutorials}/**/*.rst - - # Use dummy builder to improve performance as we don't need the generated HTML in this workflow. - - name: Sphinx build - run: | - sphinx-build --color -b dummy -d _build/doctrees -W . _build/html