Skip to content

Commit 67ee40b

Browse files
committed
🔧. Add manual repository dispatch
Both workflows receive a manual repository dispatch. Added directly to main to ensure it is available for future PRs
1 parent c69f4ea commit 67ee40b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/pull_request.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Validate Pull Request
22

3-
on: [pull_request, repository_dispatch]
3+
on:
4+
pull_request:
5+
repository_dispatch:
6+
types: [pull_request]
47

58
env:
69
PYTHON_VERSION: 3.8

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Release Build
33
on:
44
milestone:
55
types: [closed]
6+
repository_dispatch:
7+
types: [milestone_closed]
68

79
env:
810
PYTHON_VERSION: 3.8

0 commit comments

Comments
 (0)