Skip to content

refactor: 매 오전 8시에 batch-cron 실행 되도록 수정 #3

refactor: 매 오전 8시에 batch-cron 실행 되도록 수정

refactor: 매 오전 8시에 batch-cron 실행 되도록 수정 #3

Workflow file for this run

name: Batch Cron
on:
schedule:
# 매 오전 8시에 실행
- cron: '0 8 * * *'
workflow_dispatch:
jobs:
code-review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
run: |
curl -X 'POST' \
'https://api.fewletter.site/batch/article' \
-H 'accept: application/json' \
-H 'Content-Type: application/json'