Skip to content

Commit ddda967

Browse files
committed
fix
1 parent 63f9b2b commit ddda967

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/bump.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
name: Bump
2+
name: Bump Version
3+
34
on:
45
workflow_call:
56
workflow_dispatch:

.github/workflows/integration.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ name: CI
33

44
on:
55
push:
6+
pull_request:
7+
types:
8+
- closed
69

710
jobs:
811
tests:
@@ -12,6 +15,5 @@ jobs:
1215
bump:
1316
name: Bump
1417
needs: tests
15-
if: ${{ (github.event_name == 'pull_request' && github.event.pull_request.merged == true) || github.event_name
16-
== 'workflow_dispatch' }}
18+
if: github.event.pull_request.merged == true
1719
uses: ./.github/workflows/bump.yaml

.github/workflows/tests.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
2-
name: Tests
2+
name: Run Tests
3+
34
on:
4-
workflow_call:
5-
workflow_dispatch:
5+
workflow_call:
6+
workflow_dispatch:
67

78
jobs:
89
black:

0 commit comments

Comments
 (0)