We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fabcddc commit 67d49deCopy full SHA for 67d49de
.github/workflows/basic.yaml
@@ -2,11 +2,11 @@ name: Basic Workflow
2
3
on:
4
push:
5
- branches: # This workflow will run on push and pull request to the main branch
+ branches:
6
- main
7
8
- watch:
9
- types: [started]
+ schedule:
+ - cron: '*/10 * * * *' # Every 10 minutes
10
11
jobs:
12
build:
.github/workflows/medium.yaml
@@ -18,9 +18,6 @@ on:
18
default: false
19
type: boolean
20
21
- schedule:
22
- - cron: '0 3 * * *' # Runs daily at 03:00 UTC
23
-
24
25
run-task:
26
runs-on: ubuntu-latest
0 commit comments