Skip to content

Commit bc597b5

Browse files
committed
ignore actions for .md file edits.
1 parent 0fdb5a8 commit bc597b5

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ on:
1010
- '**/*.md'
1111
push:
1212
branches: [ release ]
13+
paths-ignore:
14+
- '**/*.md'
1315
workflow_dispatch:
1416

1517
jobs:

.github/workflows/coverage.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
- '**/*.md'
88
push:
99
branches: [ release ]
10+
paths-ignore:
11+
- '**/*.md'
1012
workflow_dispatch:
1113

1214
jobs:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ rtl::CxxMirror& cxx::mirror() {
8383
}
8484
```
8585
`cxx_mirror` is a immutable, stack-allocated, value-type object and is safe to copy.
86-
However, when used as a singleton (as shown above), implicit copies (e.g., `auto mirror = cxx::mirror();`) can unintentionally violate the singleton semantics.
87-
To prevent this, the copy constructor is restricted to avoid such unintended duplication.
86+
However, when used as a singleton (as shown above), implicit copies (e.g., `auto mirror = cxx::mirror()`) can unintentionally violate the singleton semantics.
87+
To prevent this, the `CxxMirror`'s copy constructor is restricted to avoid such unintended duplication.
8888

8989
### RTL in action:
9090

0 commit comments

Comments
 (0)