-
pull_request event 로 activity_type 살펴보기github actions 2022. 2. 27. 16:57
문제
event 에 대한 github actions 문서를 보면 push 의 경우에는 딱히 더 설정할 activity 가 없지만, pull_request 는 activity 를 추가로 설정할 수 있다. 예제 코드를 작성해 보자
코드
name: Pull Request Action on: push: pull_request: types: [opened, reopend, closed] jobs: run-github-actions: runs-on: ubuntu-latest steps: - name: List Files run: | pwd ls -a
'github actions' 카테고리의 다른 글
외부에서 github http api 호출로 workflow 실행하기 (0) 2022.02.27 cron schedule 설정하기 (0) 2022.02.27 checkout action 사용해 보기 (0) 2022.02.26 uses 로 action 사용해 보기 (0) 2022.02.26 다양한 Shell 사용하고 순차적으로 실행하기 (0) 2022.02.13