8000 Add CI for skipped files (#241) · stern/stern@7131af2 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Commit 7131af2

Browse files
author
Takashi Kusumi
authored
Add CI for skipped files (#241)
1 parent 74952fd commit 7131af2

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: CI
22

33
on:
4+
# Must keep in sync with ci_for_skipped.yaml
45
push:
56
branches: [master]
67
paths-ignore: ['**.md']

.github/workflows/ci_for_skipped.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# CI for skipped files
2+
name: CI
3+
4+
on:
5+
push:
6+
branches: [master]
7+
paths: ['**.md']
8+
pull_request:
9+
types: [opened, synchronize]
10+
paths: ['**.md']
11+
12+
jobs:
13+
run:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- run: 'echo "No check required"'

0 commit comments

Comments
 (0)
0