Skip to content

Commit 4dfe2d2

Browse files
committed
Bundle CI workflows on main via release.yml
Change lint, test, and variants workflows to trigger on pull_request instead of push, so they only run independently on PRs. On push to main, release.yml calls them as reusable workflows.
1 parent fb950c1 commit 4dfe2d2

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/lint.yml

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

33
on:
4-
push:
4+
pull_request:
55
workflow_call:
66
workflow_dispatch:
77

.github/workflows/test.yml

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

33
on:
4-
push:
4+
pull_request:
55
workflow_call:
66
workflow_dispatch:
77

.github/workflows/variants.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Python/VENV/Installer Variants
22

33
on:
4-
push:
4+
pull_request:
55
workflow_call:
66
workflow_dispatch:
77

0 commit comments

Comments
 (0)