This repository has been archived by the owner on Jan 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
92 lines (91 loc) · 3.27 KB
/
issue_labeler.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: "Set Issue Label"
on:
issues:
types: [opened, edited]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: Naturalclar/[email protected]
with:
keywords: '["Recipe","recipe"]'
labels: '["Recipe"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Naturalclar/[email protected]
with:
keywords: '["MealPlan","Mealplan", "Meal plan", "meal plan"]'
labels: '["MealPlan"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Naturalclar/[email protected]
with:
keywords: '["Settings","settings"]'
labels: '["Settings"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Naturalclar/[email protected]
with:
keywords: '["User","user"]'
labels: '["User"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Naturalclar/[email protected]
with:
keywords: '["Session","session"]'
labels: '["Session"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Naturalclar/[email protected]
with:
keywords: '["Ingredient","ingredient"]'
labels: '["Ingredient"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Naturalclar/[email protected]
with:
keywords: '["Store","store"]'
labels: '["Store"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Naturalclar/[email protected]
with:
keywords: '["Category","category"]'
labels: '["Category"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Naturalclar/[email protected]
with:
keywords: '["Middleware","middleware"]'
labels: '["Middleware"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Naturalclar/[email protected]
with:
keywords: '["Route","route"]'
labels: '["Route"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Naturalclar/[email protected]
with:
keywords: '["Utils","utils", "Util", "util"]'
labels: '["Utils"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Naturalclar/[email protected]
with:
keywords: '["Model","model"]'
labels: '["Model"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Naturalclar/[email protected]
with:
keywords: '["Schema","schema"]'
labels: '["Schema"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Naturalclar/[email protected]
with:
keywords: '["Controller","controller"]'
labels: '["Controller"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Naturalclar/[email protected]
with:
keywords: '["Service","service"]'
labels: '["Service"]'
github-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: Naturalclar/[email protected]
with:
keywords: '["- [ ] #", "- [x] #"]'
labels: '["Grouped Task"]'
# Self hosted deploy server cleanup, should ALWAYS run independent to result
- name: Cleanup
if: ${{ always() }}
run: docker ps -q | xargs -n 1 -P 8 -I {} docker stop {}