-
Notifications
You must be signed in to change notification settings - Fork 11
192 lines (166 loc) · 6.53 KB
/
github-metrics.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
name: GitHub Metrics
# on:
# workflow_dispatch:
# schedule:
# - cron: '3 2 1 * *'
on: [pull_request]
jobs:
get_dates:
name: Get Dates
runs-on: ubuntu-latest
outputs:
report_month: ${{ steps.get_dates.outputs.report_month }}
last_month: ${{ steps.get_dates.outputs.last_month }}
steps:
- id: get_dates
name: Get dates for last month
shell: bash
run: |
# Get the current date
current_date=$(date +'%Y-%m-%d')
# Calculate the previous month
previous_date=$(date -d "$current_date -1 month" +'%Y-%m-%d')
# Put the report month and year in the environment
echo report_month="$(date -d "$previous_date" +'%B') $(date -d "$previous_date" +'%Y')" >> "$GITHUB_OUTPUT"
# Extract the year and month from the previous date
previous_year=$(date -d "$previous_date" +'%Y')
previous_month=$(date -d "$previous_date" +'%m')
# Calculate the first day of the previous month
first_day=$(date -d "$previous_year-$previous_month-01" +'%Y-%m-%d')
# Calculate the last day of the previous month
last_day=$(date -d "$first_day +1 month -1 day" +'%Y-%m-%d')
echo "$first_day..$last_day"
echo "last_month=$first_day..$last_day" >> "$GITHUB_OUTPUT"
# Issues
issues_opened:
name: Issues Opened
runs-on: ubuntu-latest
needs: get_dates
steps:
- name: Run issue-metrics tool for issues opened last month
uses: github/issue-metrics@v2
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
SEARCH_QUERY: 'org:appwrite org:open-runtimes org:utopia-php is:issue created:${{ needs.get_dates.outputs.last_month }}'
HIDE_TIME_TO_ANSWER: true
- id: create_issue
name: Create issue
uses: peter-evans/create-issue-from-file@v4
with:
title: Issues Opened in ${{ needs.get_dates.outputs.report_month }}
content-filepath: ./issue_metrics.md
- name: Attach JSON
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ steps.create_issue.outputs.issue-number }}
body-path: ./issue_metrics.json
issues_closed:
name: Issues Closed
runs-on: ubuntu-latest
needs: get_dates
steps:
- name: Run issue-metrics tool for issues closed last month
uses: github/issue-metrics@v2
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
SEARCH_QUERY: 'org:appwrite org:open-runtimes org:utopia-php is:issue closed:${{ needs.get_dates.outputs.last_month }}'
HIDE_TIME_TO_ANSWER: true
- id: create_issue
name: Create issue
uses: peter-evans/create-issue-from-file@v4
with:
title: Issues Closed in ${{ needs.get_dates.outputs.report_month }}
content-filepath: ./issue_metrics.md
- name: Attach JSON
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ steps.create_issue.outputs.issue-number }}
body-path: ./issue_metrics.json
# PRs
prs_opened:
name: PRs Opened
runs-on: ubuntu-latest
needs: get_dates
steps:
- name: Run issue-metrics tool for PRs opened last month
uses: github/issue-metrics@v2
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
SEARCH_QUERY: 'org:appwrite org:open-runtimes org:utopia-php is:pull-request created:${{ needs.get_dates.outputs.last_month }}'
HIDE_TIME_TO_ANSWER: true
- id: create_issue
name: Create issue
uses: peter-evans/create-issue-from-file@v4
with:
title: PRs Opened in ${{ needs.get_dates.outputs.report_month }}
content-filepath: ./issue_metrics.md
- name: Attach JSON
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ steps.create_issue.outputs.issue-number }}
body-path: ./issue_metrics.json
prs_closed:
name: PRs Closed
runs-on: ubuntu-latest
needs: get_dates
steps:
- name: Run issue-metrics tool for PRs closed last month
uses: github/issue-metrics@v2
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
SEARCH_QUERY: 'org:appwrite org:open-runtimes org:utopia-php is:pull-request closed:${{ needs.get_dates.outputs.last_month }}'
HIDE_TIME_TO_ANSWER: true
- id: create_issue
name: Create issue
uses: peter-evans/create-issue-from-file@v4
with:
title: PRs Closed in ${{ needs.get_dates.outputs.report_month }}
content-filepath: ./issue_metrics.md
- name: Attach JSON
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ steps.create_issue.outputs.issue-number }}
body-path: ./issue_metrics.json
# Discussions
discussions_opened:
name: Discussions Opened
runs-on: ubuntu-latest
needs: get_dates
steps:
- name: Run issue-metrics tool for discussions opened last month
uses: github/issue-metrics@v2
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
SEARCH_QUERY: 'org:appwrite org:open-runtimes org:utopia-php type:discussions created:${{ needs.get_dates.outputs.last_month }}'
- id: create_issue
name: Create issue
uses: peter-evans/create-issue-from-file@v4
with:
title: Discussions Opened in ${{ needs.get_dates.outputs.report_month }}
content-filepath: ./issue_metrics.md
- name: Attach JSON
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ steps.create_issue.outputs.issue-number }}
body-path: ./issue_metrics.json
discussions_closed:
name: Discussions Closed
runs-on: ubuntu-latest
needs: get_dates
steps:
- name: Run issue-metrics tool for discussions closed last month
uses: github/issue-metrics@v2
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
SEARCH_QUERY: 'org:appwrite org:open-runtimes org:utopia-php type:discussions closed:${{ needs.get_dates.outputs.last_month }}'
- id: create_issue
name: Create issue
uses: peter-evans/create-issue-from-file@v4
with:
title: Discussions Closed in ${{ needs.get_dates.outputs.report_month }}
content-filepath: ./issue_metrics.md
- name: Attach JSON
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ steps.create_issue.outputs.issue-number }}
body-path: ./issue_metrics.json