Skip to content

Commit

Permalink
Allow CI runs to be triggered manually, and monthly
Browse files Browse the repository at this point in the history
  • Loading branch information
julianhyde committed Sep 6, 2023
1 parent 6229280 commit 3926e24
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,15 @@
#
name: Java CI

on: [push]
on:
push:
branches:
- '*'
workflow_dispatch: # allow manual triggering
schedule:
# Run at 0543 UTC on the 7th day of each month
# m h dom mon dow
- cron: '43 05 7 * *'

jobs:
build:
Expand Down

0 comments on commit 3926e24

Please sign in to comment.