-
cron schedule 설정하기github actions 2022. 2. 27. 17:24
코드
ame: Cron Schedule on: schedule: - cron: "*/5 * * * *" pull_request: types: [opened, reopend, closed] jobs: run-github-actions: runs-on: ubuntu-latest steps: - name: List Files run: | pwd ls -a
설명
- on 하위에 schedule 로 설정한다.
- 최소 설정 단위는 5분 마다이다. (1분마다 trigger 되도록 할 수는 없다)
- cron expression 이 자신 없다면 crontab guru 에서 확인해 보자.
'github actions' 카테고리의 다른 글
workflow 실행 조건을 branches, tags, paths 로 제한하기 (0) 2022.02.27 외부에서 github http api 호출로 workflow 실행하기 (0) 2022.02.27 pull_request event 로 activity_type 살펴보기 (0) 2022.02.27 checkout action 사용해 보기 (0) 2022.02.26 uses 로 action 사용해 보기 (0) 2022.02.26