aboutsummaryrefslogtreecommitdiff
path: root/content/notes/cronjobs-github-with-actions.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/notes/cronjobs-github-with-actions.md')
-rw-r--r--content/notes/cronjobs-github-with-actions.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/content/notes/cronjobs-github-with-actions.md b/content/notes/cronjobs-github-with-actions.md
index 08dea54..13e7618 100644
--- a/content/notes/cronjobs-github-with-actions.md
+++ b/content/notes/cronjobs-github-with-actions.md
@@ -4,17 +4,17 @@ url: cronjobs-github-with-actions.html
4date: 2023-05-27T00:35:36+02:00 4date: 2023-05-27T00:35:36+02:00
5type: notes 5type: notes
6draft: false 6draft: false
7tags: [github, actions] 7tags: [github]
8--- 8---
9 9
10In the root of your repository create a folder `.github/workflows` and 10In the root of your repository create a folder `.github/workflows` and
11in that folder create a file a file `cron.yaml`. This file can be named 11in that folder create a file a file `cron.yaml`. This file can be named
12whatever you wish. But it has to be a `yaml` file. 12whatever you wish. But it has to be a `yaml` file.
13 13
14File below (`.github/workflows/cron.yaml`) describes an action that will 14File below (`.github/workflows/cron.yaml`) describes an action that will
15trigger every six hours and it will curl example.com. 15trigger every six hours and it will curl example.com.
16 16
17However. Be sure that you have enough credits. Free account is not that 17However. Be sure that you have enough credits. Free account is not that
18generous with the minutes they give you for free. Check more about 18generous with the minutes they give you for free. Check more about
19GitHub Actions usage on their website https://docs.github.com/en/actions. 19GitHub Actions usage on their website https://docs.github.com/en/actions.
20 20