diff options
Diffstat (limited to '.github/workflows/scheduled-tasks.yml')
-rw-r--r-- | .github/workflows/scheduled-tasks.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/scheduled-tasks.yml b/.github/workflows/scheduled-tasks.yml new file mode 100644 index 0000000..e392992 --- /dev/null +++ b/.github/workflows/scheduled-tasks.yml @@ -0,0 +1,18 @@ +name: Shitcoding +run-name: Running scheduled tasks +on: + schedule: + - cron: '*/5 * * * *' + workflow_dispatch: +jobs: + Do-snapshot: + name: "vc-thm" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run vc-thm + run: | + ./viewcount-tothemoooon/vc-thm 'https://okky.kr/articles/1519671' & + ./viewcount-tothemoooon/vc-thm 'https://okky.kr/articles/1519674' & + wait + wait |