This commit is contained in:
13
.gitea/workflows/cron-ci.yml
Normal file
13
.gitea/workflows/cron-ci.yml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
name: Hello Every Minute
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '*/1 * * * *' # Mỗi 1 phút (UTC)
|
||||||
|
workflow_dispatch: # Cho phép chạy thủ công
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
hello-job:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Print hello
|
||||||
|
run: echo "hello"
|
||||||
Reference in New Issue
Block a user