Skip to content

Commit

Permalink
[CI] skip CI when some specific files were changed (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
fangyixiao18 authored Dec 20, 2021
1 parent dde842b commit e26d1b8
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,22 @@

name: build

on: [push, pull_request]
on:
push:
paths-ignore:
- 'README.md'
- 'README_zh-CN.md'
- 'docs/**'
- 'model-index.yml'
- 'configs/**.md'

pull_request:
paths-ignore:
- 'README.md'
- 'README_zh-CN.md'
- 'docs/**'
- 'model-index.yml'
- 'configs/**.md'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down

0 comments on commit e26d1b8

Please sign in to comment.