Skip to content

Commit c1151da

Browse files
committed
[86] GHA: Add workflow_dispatch and schedule config
1 parent 3048b04 commit c1151da

2 files changed

Lines changed: 26 additions & 2 deletions

File tree

.github/workflows/build-and-test-plugin-with-irods-packages.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
name: build-and-test-plugin-with-irods-packages
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
schedule:
8+
# ┌───────────── minute (0 - 59)
9+
# │ ┌───────────── hour (0 - 23)
10+
# │ │ ┌───────────── day of the month (1 - 31)
11+
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
12+
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
13+
# │ │ │ │ │
14+
# * * * * *
15+
- cron: "0 7 * * 1" # Run at 7:00am UTC every Monday morning.
416

517
defaults:
618
run:

.github/workflows/build-and-test-plugin.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
name: build-and-test-plugin
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
schedule:
8+
# ┌───────────── minute (0 - 59)
9+
# │ ┌───────────── hour (0 - 23)
10+
# │ │ ┌───────────── day of the month (1 - 31)
11+
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
12+
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
13+
# │ │ │ │ │
14+
# * * * * *
15+
- cron: "0 7 * * 1" # Run at 7:00am UTC every Monday morning.
416

517
defaults:
618
run:

0 commit comments

Comments
 (0)