We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63f9b2b commit ddda967Copy full SHA for ddda967
.github/workflows/bump.yaml
@@ -1,5 +1,6 @@
1
---
2
-name: Bump
+name: Bump Version
3
+
4
on:
5
workflow_call:
6
workflow_dispatch:
.github/workflows/integration.yaml
@@ -3,6 +3,9 @@ name: CI
push:
+ pull_request:
7
+ types:
8
+ - closed
9
10
jobs:
11
tests:
@@ -12,6 +15,5 @@ jobs:
12
15
bump:
13
16
name: Bump
14
17
needs: tests
- if: ${{ (github.event_name == 'pull_request' && github.event.pull_request.merged == true) || github.event_name
- == 'workflow_dispatch' }}
18
+ if: github.event.pull_request.merged == true
19
uses: ./.github/workflows/bump.yaml
.github/workflows/tests.yaml
@@ -1,8 +1,9 @@
-name: Tests
+name: Run Tests
- workflow_call:
- workflow_dispatch:
+ workflow_call:
+ workflow_dispatch:
black:
0 commit comments