Skip to content

Commit 92e0b7e

Browse files
authored
ci: Fix CI triggers (remove pull_request) (#1096)
1 parent 1ec6a27 commit 92e0b7e

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "Coverage"
22

3-
on: [push,pull_request]
3+
on: [push]
44
jobs:
55
coverage:
66
runs-on: ${{ matrix.os }}

.github/workflows/formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "Check code format with pre-commit"
22

3-
on: [push, pull_request]
3+
on: [push]
44
jobs:
55
formatting:
66
runs-on: ubuntu-latest

.github/workflows/linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: "Linting"
2-
on: [push,pull_request]
2+
on: [push]
33
jobs:
44
linting:
55
name: Python Code Quality and Lint

.github/workflows/packaging_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "Packaging Test"
22

3-
on: [pull_request]
3+
on: [push]
44
jobs:
55
check_packaging:
66
runs-on: ${{ matrix.os }}

.github/workflows/test_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: "Test Doc Creation (Sphinx)"
2-
on: [pull_request]
2+
on: [push]
33
jobs:
44
docbuild:
55
name: Check Docs

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Tests
22

3-
on: [push,pull_request]
3+
on: [push]
44
jobs:
55
tests:
66
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)