Skip to content

Commit

Permalink
CI: add workflow_dispatch & schedule triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
knocte committed Feb 16, 2024
1 parent dea99be commit af10853
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: CI

on: [push, pull_request]
on:
push:
pull_request:
workflow_dispatch:

# see https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
schedule:
# once a day
- cron: "0 0 * * *"

jobs:

Expand Down

0 comments on commit af10853

Please sign in to comment.