github actions filter pattern
-
workflow 실행 조건을 branches, tags, paths 로 제한하기github actions 2022. 2. 27. 18:03
코드 name: Filter Conditions on: push: branches: # branches-ignore - master - 'feature/*' # matches feature/featA - 'feature/**' # matches feature/featA, feature/feat/A - '!feature/featC' tags: # tags-ignore - v1.* paths: # paths-ignore - '**.js' # only any javascript files jobs: run-github-actions: runs-on: ubuntu-latest steps: - name: List Files run: | pwd ls -a github actions filter 가이드 문서 보기 참..