From 46651742c20ff28c63777669ca19c3736d5bb990 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 13 Feb 2024 15:32:42 +0000 Subject: [PATCH] test cronjob action --- .gitea/workflows/cron.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitea/workflows/cron.yaml diff --git a/.gitea/workflows/cron.yaml b/.gitea/workflows/cron.yaml new file mode 100644 index 0000000..407b39b --- /dev/null +++ b/.gitea/workflows/cron.yaml @@ -0,0 +1,12 @@ +name: Gitea Actions Demo with cronjob +run-name: ${{ gitea.actor }} is testing out Gitea Actions + +on: + schedule: + - @hourly + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - run: echo " The job was automatically triggered by a ${{ gitea.event_name }} event" \ No newline at end of file