From 6178e1c3945fbd9ee819e1c44eb7ecda821ec75f Mon Sep 17 00:00:00 2001 From: Kory Draughn Date: Fri, 29 May 2026 12:00:58 -0400 Subject: [PATCH] [#141] GHA: Add workflow_dispatch and schedule config --- .../build-and-test-plugin-with-irods-packages.yml | 14 +++++++++++++- .github/workflows/build-and-test-plugin.yml | 14 +++++++++++++- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test-plugin-with-irods-packages.yml b/.github/workflows/build-and-test-plugin-with-irods-packages.yml index 4d4592e..db04a8a 100644 --- a/.github/workflows/build-and-test-plugin-with-irods-packages.yml +++ b/.github/workflows/build-and-test-plugin-with-irods-packages.yml @@ -1,6 +1,18 @@ name: build-and-test-plugin-with-irods-packages -on: [push, pull_request] +on: + push: + pull_request: + workflow_dispatch: + schedule: + # ┌───────────── minute (0 - 59) + # │ ┌───────────── hour (0 - 23) + # │ │ ┌───────────── day of the month (1 - 31) + # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC) + # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT) + # │ │ │ │ │ + # * * * * * + - cron: "0 7 * * 1" # Run at 7:00am UTC every Monday morning. defaults: run: diff --git a/.github/workflows/build-and-test-plugin.yml b/.github/workflows/build-and-test-plugin.yml index 858f09a..7fd7ed1 100644 --- a/.github/workflows/build-and-test-plugin.yml +++ b/.github/workflows/build-and-test-plugin.yml @@ -1,6 +1,18 @@ name: build-and-test-plugin -on: [push, pull_request] +on: + push: + pull_request: + workflow_dispatch: + schedule: + # ┌───────────── minute (0 - 59) + # │ ┌───────────── hour (0 - 23) + # │ │ ┌───────────── day of the month (1 - 31) + # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC) + # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT) + # │ │ │ │ │ + # * * * * * + - cron: "0 7 * * 1" # Run at 7:00am UTC every Monday morning. defaults: run: