Skip to content

Commit ed40a19

Browse files
committed
Ensure GH actions trigger are described
1 parent 107b39f commit ed40a19

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/action-schedule_master.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ name: nightly
1010
# When to run
1111
# -------------------------------------------------------------------------------------------------
1212
on:
13+
# Nightly: At 00:00 on Sunday, Tuesday, and Thursday
1314
schedule:
14-
# At 00:00 on Sunday, Tuesday, and Thursday
1515
- cron: '0 0 * * 0,2,4'
16+
# Dispatch: allows for manual trigger via GH UI
1617
workflow_dispatch:
1718

1819

.github/workflows/action-schedule_tags.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ name: nightly
1010
# When to run
1111
# -------------------------------------------------------------------------------------------------
1212
on:
13+
# Nightly: At 00:00 on Sunday, Tuesday, and Thursday
1314
schedule:
14-
# At 00:00 on Sunday, Tuesday, and Thursday
1515
- cron: '0 0 * * 0,2,4'
16+
# Dispatch: allows for manual trigger via GH UI
1617
workflow_dispatch:
1718

1819

.github/workflows/action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ name: build
1010
# When to run
1111
# -------------------------------------------------------------------------------------------------
1212
on:
13+
# Push or pull_request will be determined in jobs.configure.enabled
1314
push:
1415
pull_request:
16+
# Dispatch: allows for manual trigger via GH UI
1517
workflow_dispatch:
1618

1719

0 commit comments

Comments
 (0)