Skip to content

Commit ce3c946

Browse files
committed
chore(ci): prevent double actions run
When branches are pushed to the main repo (like a dependabot automated branch), prevent double actions execution. Signed-off-by: Mike Fiedler <[email protected]>
1 parent c378f25 commit ce3c946

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: CI
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
37
jobs:
48
test:
59
name: Test - ${{ matrix.python-version }}

0 commit comments

Comments
 (0)