-
Notifications
You must be signed in to change notification settings - Fork 71
64 lines (63 loc) · 2.1 KB
/
auto-assign-maintainer.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Auto-assign Maintainer
"on":
pull_request_target:
types:
- synchronize
- reopened
- labeled
- unlabeled
jobs:
core:
name: Auto-assign Core Maintainer
if: ${{ github.event.pull_request.assignee == null && join(github.event.pull_request.assignees) == '' }}
runs-on:
- ubuntu-latest
steps:
- uses: kentaro-m/auto-assign-action@v1.2.5
with:
configuration-path: .github/auto-assign-core.yml
distribution:
name: Auto-assign Distribution Maintainer
if: ${{ github.event.pull_request.assignee == null && join(github.event.pull_request.assignees) == '' }}
runs-on:
- ubuntu-latest
steps:
- uses: kentaro-m/auto-assign-action@v1.2.5
with:
configuration-path: .github/auto-assign-distribution.yml
implementation:
name: Auto-assign Implementation Maintainer
if: ${{ github.event.pull_request.assignee == null && join(github.event.pull_request.assignees) == '' }}
runs-on:
- ubuntu-latest
steps:
- uses: kentaro-m/auto-assign-action@v1.2.5
with:
configuration-path: .github/auto-assign-implementation.yml
learning:
name: Auto-assign Learning Maintainer
if: ${{ github.event.pull_request.assignee == null && join(github.event.pull_request.assignees) == '' }}
runs-on:
- ubuntu-latest
steps:
- uses: kentaro-m/auto-assign-action@v1.2.5
with:
configuration-path: .github/auto-assign-learning.yml
platform:
name: Auto-assign Platform Maintainer
if: ${{ github.event.pull_request.assignee == null && join(github.event.pull_request.assignees) == '' }}
runs-on:
- ubuntu-latest
steps:
- uses: kentaro-m/auto-assign-action@v1.2.5
with:
configuration-path: .github/auto-assign-platform.yml
bat:
name: Auto-assign Buildpack Authors' Tooling Maintainer
if: ${{ github.event.pull_request.assignee == null && join(github.event.pull_request.assignees) == '' }}
runs-on:
- ubuntu-latest
steps:
- uses: kentaro-m/auto-assign-action@v1.2.5
with:
configuration-path: .github/auto-assign-bat.yml