Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/build-and-test-plugin-with-irods-packages.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
14 changes: 13 additions & 1 deletion .github/workflows/build-and-test-plugin.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
Loading