-
Notifications
You must be signed in to change notification settings - Fork 0
114 lines (110 loc) · 4.78 KB
/
dashboard.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: Build Dashboard
on:
workflow_dispatch:
schedule:
- cron: 0 * * * *
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: 'Generate Dashboard'
uses: ethomson/issue-dashboard@v1
with:
config: |
title: 'Meadow Issues'
description: Please use this repo to [file issues](https://github.com/WildernessLabs/Meadow_Issues/issues/new/choose) related to Meadow. Thanks!
output:
format: markdown
filename: 'README.md'
sections:
- title: 'Needs Triage'
widgets:
- type: 'table'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue no:label'
- title: 'Open Bugs'
widgets:
- type: 'number'
title: 'P0'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p0'
- type: 'number'
title: 'P1'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p1'
- type: 'number'
title: 'P2'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p2'
- title: 'Meadow.OS'
widgets:
- type: 'number'
title: 'P0'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p0 label:os'
- type: 'number'
title: 'P1'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p1 label:os'
- type: 'number'
title: 'P2'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p2 label:os'
- title: 'Meadow.Core'
widgets:
- type: 'number'
title: 'P0'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p0 label:core'
- type: 'number'
title: 'P1'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p1 label:core'
- type: 'number'
title: 'P2'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p2 label:core'
- title: 'Meadow.Foundation'
widgets:
- type: 'number'
title: 'P0'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p0 label:foundation'
- type: 'number'
title: 'P1'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p1 label:foundation'
- type: 'number'
title: 'P2'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p2 label:foundation'
- title: 'Meadow.Cloud'
widgets:
- type: 'number'
title: 'P0'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p0 label:cloud'
- type: 'number'
title: 'P1'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p1 label:cloud'
- type: 'number'
title: 'P2'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p2 label:cloud'
- title: 'Tooling'
widgets:
- type: 'number'
title: 'P0'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p0 label:tooling'
- type: 'number'
title: 'P1'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p1 label:tooling'
- type: 'number'
title: 'P2'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p2 label:tooling'
- title: 'Documentation'
widgets:
- type: 'number'
title: 'P0'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p0 label:docs'
- type: 'number'
title: 'P1'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p1 label:docs'
- type: 'number'
title: 'P2'
issue_query: 'repo:WildernessLabs/Meadow_Issues is:open is:issue label:bug label:p2 label:docs'
token: ${{ secrets.token }}
- name: Publish Documentation
run: |
git add .
git config user.name 'lamebrain'
git config user.email '[email protected]'
git commit -m 'Documentation update' --allow-empty
git push origin main