remove .github

This commit is contained in:
Yu Chen
2023-03-19 11:15:18 +08:00
parent 4413866b30
commit 0a1d922c24
5 changed files with 0 additions and 125 deletions

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.

View File

@@ -1,14 +0,0 @@
---
name: Study Note
about: 记录学习过程
title: '[Note] 标题示例: 第x章学习笔记总结'
labels: 'note'
assignees: ''
---
**Chapter**
e.g. 第二章 批处理系统
**Study Note**
学习笔记整理

View File

@@ -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