Skip to content

Commit

Permalink
Add CI for skipped files (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
tksm committed Mar 2, 2023
1 parent 74952fd commit 7131af2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: CI

on:
# Must keep in sync with ci_for_skipped.yaml
push:
branches: [master]
paths-ignore: ['**.md']
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/ci_for_skipped.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# CI for skipped files
name: CI

on:
push:
branches: [master]
paths: ['**.md']
pull_request:
types: [opened, synchronize]
paths: ['**.md']

jobs:
run:
runs-on: ubuntu-latest
steps:
- run: 'echo "No check required"'

0 comments on commit 7131af2

Please sign in to comment.