From 8a354bd46845d27f98c272a91fe3e7049217f95c Mon Sep 17 00:00:00 2001 From: Vasiliy Tolstov Date: Fri, 22 Sep 2023 23:31:14 +0300 Subject: [PATCH] add autoupdate Signed-off-by: Vasiliy Tolstov --- .gitea/workflows/autoupdate.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitea/workflows/autoupdate.yml diff --git a/.gitea/workflows/autoupdate.yml b/.gitea/workflows/autoupdate.yml new file mode 100644 index 00000000..ea68017d --- /dev/null +++ b/.gitea/workflows/autoupdate.yml @@ -0,0 +1,11 @@ +on: + schedule: + - cron: '* * * * *' + - cron: '@hourly' + +jobs: + test_schedule: + runs-on: ubuntu-latest + steps: + - name: autoupdate + run: echo "This step will always run" \ No newline at end of file