-
Notifications
You must be signed in to change notification settings - Fork 110
59 lines (58 loc) · 2.05 KB
/
label-issues-from-comments.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
name: "Label issue from comment keyword"
on:
issue_comment:
types: [created, edited]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: Amwam/[email protected]
with:
keywords: '["#bug"]'
labels: '["bug"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Amwam/[email protected]
with:
keywords: '["#feature-suggestion"]'
labels: '["feature-suggestion"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Amwam/[email protected]
with:
keywords: '["#has-ellie", "https://ellie-app.com/"]'
labels: '["has-ellie"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Amwam/[email protected]
with:
keywords: '["#no-ellie"]'
labels: '["no-ellie"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Amwam/[email protected]
with:
keywords: '["#has-test"]'
labels: '["has-test"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Amwam/[email protected]
with:
keywords: '["#pain-point"]'
labels: '["pain-point"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Amwam/[email protected]
with:
keywords: '["#test-incorrectly-passing"]'
labels: '["test-incorrectly-passing"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Amwam/[email protected]
with:
keywords: '["#test-not-compiling"]'
labels: '["test-not-compiling"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Amwam/[email protected]
with:
keywords: '["#test-failing"]'
labels: '["test-failing"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Amwam/[email protected]
with:
keywords: '["#unexpected"]'
labels: '["unexpected"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"