Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
98d3e54
script init
xjq7 Feb 22, 2023
c21b99a
feat: readme 自动更新策略
xjq7 Feb 22, 2023
5158d21
feat: 前端 content update
xjq7 Feb 22, 2023
febf49e
chore: 子首页 script
xjq7 Feb 22, 2023
608671c
update README
xjq7 Feb 22, 2023
7a7ef58
refactor: 编译原理
xjq7 Feb 22, 2023
1807d97
chore: update README
xjq7 Feb 22, 2023
5fb64fc
update content
xjq7 Feb 22, 2023
d723b02
chore: update README
xjq7 Feb 22, 2023
32b588c
update content
xjq7 Feb 22, 2023
a91be1a
Merge branch 'master' of github.com:xjq7/books into master
xjq7 Feb 22, 2023
fb9392c
chore: update README
xjq7 Feb 22, 2023
75eb731
refactor: 目录调整
xjq7 Feb 23, 2023
46d4bf6
chore: update README
xjq7 Feb 23, 2023
ce693f1
update content
xjq7 Feb 23, 2023
5d3fcfb
chore: books 目录增加子目录
xjq7 Feb 23, 2023
788f05b
chore: update README
xjq7 Feb 23, 2023
02f707a
update content
xjq7 Feb 23, 2023
6994b27
Merge branch 'master' of github.com:xjq7/books
xjq7 Feb 23, 2023
d3deab0
chore: update README
xjq7 Feb 23, 2023
320ccfb
update content
xjq7 Feb 23, 2023
6cf2d12
chore: update README
xjq7 Feb 23, 2023
c45121e
update content
xjq7 Feb 23, 2023
590a4ba
chore: update README
xjq7 Feb 23, 2023
d2acf3c
update content
xjq7 Feb 23, 2023
dba49ba
chore: update README
xjq7 Feb 23, 2023
5950ea2
style: 文件格式展示优化
xjq7 Feb 23, 2023
ac3397b
chore: 调整 readme action 触发范围
xjq7 Feb 23, 2023
cbf0f3c
feat: C#
xjq7 Feb 23, 2023
374f845
chore: update README
xjq7 Feb 23, 2023
05df780
feat: migrate Java
xjq7 Feb 23, 2023
d434846
chore: update README
xjq7 Feb 23, 2023
6921861
feat: update content
xjq7 Feb 23, 2023
f55c8c5
chore: update README
xjq7 Feb 23, 2023
084508a
feat: migrate 数据库
xjq7 Feb 23, 2023
a24b090
chore: update README
xjq7 Feb 23, 2023
d178120
feat: migrate 网络安全
xjq7 Feb 23, 2023
f276dd4
Merge branch 'master' of github.com:xjq7/books into master
xjq7 Feb 23, 2023
88bf420
chore: update README
xjq7 Feb 23, 2023
feb52b9
feat: migrate
xjq7 Feb 24, 2023
77519a6
chore: update README
xjq7 Feb 24, 2023
470411b
feat: migrate Go
xjq7 Feb 24, 2023
ff2a823
Merge branch 'master' of github.com:xjq7/books into master
xjq7 Feb 24, 2023
b011fd6
chore: update README
xjq7 Feb 24, 2023
8fd659a
feat: migrate 测试
xjq7 Feb 24, 2023
2e4e971
Merge branch 'master' of github.com:xjq7/books into master
xjq7 Feb 24, 2023
60b374d
chore(robot): update README
xjq7 Feb 24, 2023
eadc20c
feat: migrate 软件工程 计算机网络
xjq7 Feb 24, 2023
265e458
chore(robot): update README
xjq7 Feb 24, 2023
72e68c4
feat: migrate
xjq7 Feb 25, 2023
2e27421
chore(robot): update README
xjq7 Feb 25, 2023
0b832b7
feat: migrate
xjq7 Feb 25, 2023
05a8484
chore(robot): update README
xjq7 Feb 25, 2023
6da1e5e
feat: migrate
xjq7 Feb 25, 2023
6c58d15
chore(robot): update README
xjq7 Feb 25, 2023
a4caf93
update
xjq7 Apr 16, 2023
f22a879
chore: lock pnpm version
xjq7 Apr 16, 2023
763ff45
chore(robot): update README
xjq7 Apr 16, 2023
625a4c6
docs: qq group
May 31, 2023
0464fb7
docs: update
Jul 11, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions .github/workflows/readme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# This is a basic workflow to help you get started with Actions

name: update readme

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [master]
paths:
- 'json/**'
- 'scripts/readme/**'
pull_request:
branches: [master]
paths:
- 'json/**'
- 'scripts/readme/**'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token.
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.

- name: Use Node.js 18.14.0
uses: actions/setup-node@v1
with:
node-version: 18.14.0

- name: Install pnpm
run: npm i pnpm@7 -g

- name: Install Packages
run: pnpm install

- name: Create local changes
run: pnpm run readme

- name: Commit files
run: |
git config --local user.email "lebnizjoan@gmail.com"
git config --local user.name "xjq7.robot"
git add .
git commit -a -m "chore(robot): update README"

- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.TOKEN }}
branch: ${{ github.ref }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"singleQuote": true,
"trailingComma": "es5",
"semi": true
}
13 changes: 13 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.workingDirectories": [{ "mode": "auto" }],
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true
}
Loading