File tree Expand file tree Collapse file tree 4 files changed +15
-33
lines changed Expand file tree Collapse file tree 4 files changed +15
-33
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,12 @@ name: markdown_equations
21
21
22
22
# Workflow triggers:
23
23
on :
24
- pull_request_target :
25
- branches :
26
- - develop
27
- types :
28
- - closed
29
- paths :
30
- # List paths for which changes should trigger this workflow:
31
- - ' lib/**/*.md'
24
+ schedule :
25
+ # Run the workflow once a day at 2:00 AM UTC:
26
+ - cron : ' 0 2 * * *'
27
+
28
+ # Allow the workflow to be manually run:
29
+ workflow_dispatch :
32
30
33
31
# Global permissions:
34
32
permissions :
Original file line number Diff line number Diff line change @@ -21,11 +21,9 @@ name: markdown_tocs
21
21
22
22
# Workflow triggers:
23
23
on :
24
- pull_request_target :
25
- branches :
26
- - develop
27
- types :
28
- - closed
24
+ schedule :
25
+ # Run the workflow once a day at 2:00 AM UTC:
26
+ - cron : ' 0 2 * * *'
29
27
30
28
# Allow the workflow to be manually run:
31
29
workflow_dispatch :
Original file line number Diff line number Diff line change @@ -21,14 +21,9 @@ name: namespace_declarations
21
21
22
22
# Workflow triggers:
23
23
on :
24
- pull_request_target :
25
- branches :
26
- - develop
27
- types :
28
- - closed
29
- paths :
30
- # List paths for which changes should trigger this workflow:
31
- - ' lib/**/types/index.d.ts'
24
+ schedule :
25
+ # Run the workflow once a day at 2:00 AM UTC:
26
+ - cron : ' 0 2 * * *'
32
27
33
28
# Allow the workflow to be manually run:
34
29
workflow_dispatch :
Original file line number Diff line number Diff line change @@ -21,18 +21,9 @@ name: update_repl_docs
21
21
22
22
# Workflow triggers:
23
23
on :
24
- pull_request_target :
25
- branches :
26
- - develop
27
- types :
28
- - closed
29
- paths :
30
- # List paths for which changes should trigger this workflow:
31
- - ' lib/**/namespace/lib/**'
32
- - ' lib/**/docs/repl.txt'
33
-
34
- # List paths for which changes should *not* trigger this workflow:
35
- - ' !lib/**/_tools/**'
24
+ schedule :
25
+ # Run the workflow once a day at 2:00 AM UTC:
26
+ - cron : ' 0 2 * * *'
36
27
37
28
# Allow the workflow to be manually run:
38
29
workflow_dispatch :
You can’t perform that action at this time.
0 commit comments