You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 15, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+13-6Lines changed: 13 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,10 @@ on:
12
12
- development
13
13
tags:
14
14
- 'v[0-9]+.[0-9]+.[0-9]+*'
15
+
paths-ignore:
16
+
- '**/*.md'# Ignore markdown files
17
+
- '**/LICENSE'
18
+
- 'scripts/**'
15
19
pull_request:
16
20
branches:
17
21
- main
@@ -23,6 +27,7 @@ on:
23
27
24
28
jobs:
25
29
build:
30
+
if: "!startsWith(github.event.head_commit.message, 'style:') && !startsWith(github.event.head_commit.message, 'docs:')"#do not run workflow on style or documentation changes
if: "!startsWith(github.event.head_commit.message, 'style:') && !startsWith(github.event.head_commit.message, 'docs:')"#do not run workflow on style or documentation changes
66
72
name: Test
67
73
runs-on: ubuntu-latest
68
74
needs: build # Ensure build job runs before this one
0 commit comments