-
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 가이드 문서 보기
'github actions' 카테고리의 다른 글
GITHUB_TOKEN 사용하기 (0) 2022.03.02 환경 변수 설정하기 (0) 2022.03.01 외부에서 github http api 호출로 workflow 실행하기 (0) 2022.02.27 cron schedule 설정하기 (0) 2022.02.27 pull_request event 로 activity_type 살펴보기 (0) 2022.02.27