Skip to content

Commit 8cf3e67

Browse files
committed
updated the CI/CD relevant files
1 parent d0f3978 commit 8cf3e67

3 files changed

Lines changed: 14 additions & 1 deletion

File tree

.github/CICD_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The Janus project uses GitHub Actions for continuous integration and deployment.
88

99
### Automatic Triggers
1010

11-
- **Push to branches:** `main`, `develop`, `adapter-querying`
11+
- **Push to branches:** all branches for fast PR checks; `main`, `develop`, and `adapter-querying` still trigger release CI
1212
- **Pull requests to:** `main`, `develop`
1313
- **Release tags:** `v*` (e.g., `v1.0.0`)
1414

.github/workflows/docs-links.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
name: Docs Link Check
22

33
on:
4+
push:
5+
branches:
6+
- "**"
7+
paths:
8+
- "**/*.md"
9+
- ".github/workflows/docs-links.yml"
10+
- "scripts/check_doc_links.sh"
411
pull_request:
512
branches: [main, develop]
613
paths:

.github/workflows/fast-pr.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: Fast PR Checks
22

33
on:
4+
push:
5+
branches:
6+
- "**"
7+
paths-ignore:
8+
- "**/*.md"
9+
- "docs/**"
410
pull_request:
511
branches: [main, develop]
612
paths-ignore:

0 commit comments

Comments
 (0)