From 0a1d922c24f1bc5b4436129f5ebdf5833d37c8ab Mon Sep 17 00:00:00 2001 From: Yu Chen Date: Sun, 19 Mar 2023 11:15:18 +0800 Subject: [PATCH] remove .github --- .github/ISSUE_TEMPLATE/bug_report.md | 32 --------------------- .github/ISSUE_TEMPLATE/feature_request.md | 20 ------------- .github/ISSUE_TEMPLATE/question.md | 24 ---------------- .github/ISSUE_TEMPLATE/study_note.md | 14 --------- .github/workflows/deployguide.yml | 35 ----------------------- 5 files changed, 125 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md delete mode 100644 .github/ISSUE_TEMPLATE/question.md delete mode 100644 .github/ISSUE_TEMPLATE/study_note.md delete mode 100644 .github/workflows/deployguide.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 5ef2acf..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: Bug report -about: 发现Bug时请提此类型Issue帮助改进 -title: '[Bug] 标题示例: 编译失败' -labels: 'bug' -assignees: '' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Environment (please complete the following information):** - - OS: [e.g. Ubuntu] - - Rust Version: - - QEMU Version: - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index f4ba530..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: 为项目提建议 -title: '[Feature] 标题示例: 建议增加QA章节' -labels: 'feature' -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md deleted file mode 100644 index 58b0830..0000000 --- a/.github/ISSUE_TEMPLATE/question.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Question -about: 对课程内容有疑问请提此类型Issue -title: '[Question] 标题示例: 为什么这里需要添加&' -labels: 'question' -assignees: '' - ---- - -**Describe the question** -A clear and concise description of what the question is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/study_note.md b/.github/ISSUE_TEMPLATE/study_note.md deleted file mode 100644 index f284e13..0000000 --- a/.github/ISSUE_TEMPLATE/study_note.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -name: Study Note -about: 记录学习过程 -title: '[Note] 标题示例: 第x章学习笔记总结' -labels: 'note' -assignees: '' - ---- - -**Chapter** -e.g. 第二章 批处理系统 - -**Study Note** -学习笔记整理 diff --git a/.github/workflows/deployguide.yml b/.github/workflows/deployguide.yml deleted file mode 100644 index 7654c7e..0000000 --- a/.github/workflows/deployguide.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Deploy Guide - -on: - push: - branches: [main] - -jobs: - deploy-doc: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: "3.8.15" - - name: Install dependencies - run: | - cd guide - pip install -r requirements.txt - - - name: build doc - run: | - cd guide - make html - - - name: create .nojekyll - run: | - cd guide - touch build/html/.nojekyll - - - name: Push to gh-pages - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./guide/build/html