Skip to content

Commit 5af9939

Browse files
committed
(MAINT) Update CI trigger
Prior to this commit the triggers for the ci workflow were set to `master`. This modules default branch has now moved to `main` meaning that the triggers are invalid. This commit updates the triggers to `main` so that workflows are correctly triggered on pushes and pull requests.
1 parent ab3c468 commit 5af9939

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: "ci"
33
on:
44
push:
55
branches:
6-
- master
6+
- "main"
77
pull_request:
88
branches:
9-
- master
9+
- "main"
1010
schedule:
1111
- cron: "0 0 * * *"
1212
workflow_dispatch:

0 commit comments

Comments
 (0)