Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 411 Bytes

File metadata and controls

22 lines (19 loc) · 411 Bytes

더 세밀한 paths 설정 예시

1. Django 코드만 감지

paths:

  • 'shoppingmall/**/*.py'
  • 'shoppingmall//templates/'
  • 'shoppingmall//static/'
  • 'Dockerfile'

2. 특정 파일 제외

paths:

  • 'shoppingmall/**'
  • 'Dockerfile'
  • '!shoppingmall//pycache/'
  • '!shoppingmall/**/*.pyc'

3. 문서 파일 제외

paths:

  • '**'
  • '!README.md'
  • '!*.md'
  • '!docs/**'