mirror of
https://github.com/LearningOS/rust-based-os-comp2022.git
synced 2026-05-05 03:52:59 +08:00
remove .github
This commit is contained in:
32
.github/ISSUE_TEMPLATE/bug_report.md
vendored
32
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@@ -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.
|
||||
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@@ -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.
|
||||
24
.github/ISSUE_TEMPLATE/question.md
vendored
24
.github/ISSUE_TEMPLATE/question.md
vendored
@@ -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.
|
||||
14
.github/ISSUE_TEMPLATE/study_note.md
vendored
14
.github/ISSUE_TEMPLATE/study_note.md
vendored
@@ -1,14 +0,0 @@
|
||||
---
|
||||
name: Study Note
|
||||
about: 记录学习过程
|
||||
title: '[Note] 标题示例: 第x章学习笔记总结'
|
||||
labels: 'note'
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Chapter**
|
||||
e.g. 第二章 批处理系统
|
||||
|
||||
**Study Note**
|
||||
学习笔记整理
|
||||
35
.github/workflows/deployguide.yml
vendored
35
.github/workflows/deployguide.yml
vendored
@@ -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
|
||||
Reference in New Issue
Block a user