From 22f5ac8fcec4dbfcc1f5033f18bc4eeca52a747d Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Tue, 31 Oct 2023 08:20:22 +0100 Subject: Made the side more retro! --- public/cronjobs-github-with-actions.html | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'public/cronjobs-github-with-actions.html') diff --git a/public/cronjobs-github-with-actions.html b/public/cronjobs-github-with-actions.html index c19ebd4..215d21d 100755 --- a/public/cronjobs-github-with-actions.html +++ b/public/cronjobs-github-with-actions.html @@ -1,9 +1,12 @@ -Cronjobs on Github with Github Actions

Cronjobs on Github with Github Actions

note, May 27, 2023 on Mitja Felicijan's blog

In the root of your repository create a folder .github/workflows and in that folder create a file a file cron.yaml. This file can be named whatever you wish. But it has to be a yaml file.

File below (.github/workflows/cron.yaml) describes an action that will trigger every six hours and it will curl example.com.

However. Be sure that you have enough credits. Free account is not that generous @@ -19,7 +22,7 @@ on their website https://docs.github. steps: - name: Call some url run: curl 'https://example.com' -


Posts from blogs I follow around the net