Skip to content

Commit f505ea7

Browse files
committed
IMPROVEMENT: do not run workflows on pull_requests, they alrundy run on pushes
1 parent 5e9270a commit f505ea7

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/codecov.yml

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

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

.github/workflows/ruff.yml

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

3-
on: [push, pull_request, workflow_dispatch]
3+
on: [push, workflow_dispatch]
44

55
#concurrency:
66
# group: ci-${{github.workflow}}-${{ github.ref }}

.github/workflows/windows_build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ on:
55
types: [published]
66
workflow_dispatch:
77
push:
8-
pull_request:
9-
108

119
concurrency:
1210
group: ci-${{github.workflow}}-${{ github.ref }}

0 commit comments

Comments
 (0)