Skip to content

Commit ed91f68

Browse files
authored
Merge pull request #976 from WeDataSphere/master
Add links check action and fix some unuseful links.
2 parents 3ba7a1e + eff3c86 commit ed91f68

File tree

7 files changed

+39
-8
lines changed

7 files changed

+39
-8
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Link checker
2+
3+
on:
4+
pull_request:
5+
push:
6+
schedule:
7+
- cron: "0 5 * * *"
8+
9+
jobs:
10+
CheckDeadLinks:
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 60
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: gaurav-nelson/github-action-markdown-link-check@v1
16+
with:
17+
use-quiet-mode: 'no'
18+
use-verbose-mode: 'yes'
19+
folder-path: '../'
20+
config-file: '.github/workflows/dlc.json'

.github/workflows/dlc.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"timeout": "10s",
3+
"retryOn429": true,
4+
"retryCount": 10,
5+
"fallbackRetryDelay": "1000s",
6+
"aliveStatusCodes": [
7+
200,
8+
401,
9+
403
10+
]
11+
}

README-ZH.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,4 +182,4 @@
182182

183183
## License
184184

185-
       DSS is under the Apache 2.0 license. See the [License](LICENSE) file for details.
185+
       DSS is under the Apache 2.0 license. See the [License](https://github.com/WeBankFinTech/DataSphereStudio/blob/master/LICENSE) file for details.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<httpmime.version>4.5.4</httpmime.version>
5555
<beanutils.version>1.9.4</beanutils.version>
5656
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
57-
<spring.version>5.2.19.RELEASE</spring.version>
57+
<spring.version>5.2.22.RELEASE</spring.version>
5858
<mybatis.spring.boot.version>2.1.2</mybatis.spring.boot.version>
5959
<spring.boot.version>2.3.7.RELEASE</spring.boot.version>
6060
<spring.cloud.version>2.2.6.RELEASE</spring.cloud.version>

web/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ Scriptis is for interactive data analysis with script development(SQL, Pyspark,
3030

3131
## QuickStart
3232

33-
Read the Quick Start [Quick Start](/docs/en_US/ch3/Scriptis_Quick_Start.md)
33+
Read the Quick Start [Quick Start](./docs/en_US/ch3/Scriptis_Quick_Start.md)
3434

3535
## Comparison with similar scheduler systems
36-
![Comparison](/docs/en_US/images/readme/Comparison.png)
36+
![Comparison](./docs/en_US/images/readme/Comparison.png)
3737

3838
## Community
3939
If you desire immediate response, please kindly raise issues to us or scan the below QR code by WeChat and QQ to join our group:
4040

41-
![WeChatQQ](/docs/en_US/images/wechatQQ.png)
41+
![WeChatQQ](./docs/en_US/images/wechatQQ.png)
4242

4343
## License
4444

45-
Scriptis is under the Apache 2.0 license. See the [LICENSE]((http://www.apache.org/licenses/LICENSE-2.0)) file for details
45+
Scriptis is under the Apache 2.0 license. See the [LICENSE](https://github.com/WeBankFinTech/DataSphereStudio/blob/master/LICENSE) file for details

web/docs/zh_CN/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Scriptis
77

88
## 引言:
99

10-
Scriptis是一款支持在线写SQL、Pyspark、HiveQL等脚本,提交给**Linkis**(Linkis是什么?[点我了解](https://github.com/WeBankFinTech/Linkis/blob/master/docs/zh_CN/README.md)执行的数据分析Web工具,且支持UDF、函数、资源管控和智能诊断等企业级特性。
10+
Scriptis是一款支持在线写SQL、Pyspark、HiveQL等脚本,提交给**Linkis**(Linkis是什么?[点我了解](https://github.com/WeBankFinTech/Linkis/blob/master/docs/zh_CN/README.md) 执行的数据分析Web工具,且支持UDF、函数、资源管控和智能诊断等企业级特性。
1111

1212
----
1313

web/docs/zh_CN/ch2/±אׂכ־ִµµ.md renamed to web/docs/zh_CN/ch2/前台编译文档.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ npm run build
5050
npm run serve
5151
```
5252

53-
在浏览器中(建议Chrome浏览器)通过链接访问应用:[http://localhost:8080/](http://localhost:8080/) .
53+
在浏览器中(建议Chrome浏览器)通过链接访问应用:```http://localhost:8080/```
5454
当您使用该方式运行项目时,您对代码的改动产生的效果,会动态体现在浏览器上。
5555

5656
**注意:因为项目采用前后端分离开发,所以在本地浏览器上运行时,需要对浏览器进行设置跨域才能访问后端接口:**

0 commit comments

Comments
 (0)