generated from hackforla/.github-hackforla-base-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 17
203 lines (179 loc) · 7.25 KB
/
pull_requests_to_csv.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
193
194
195
196
197
198
199
200
201
202
203
name: List Pull Requests and Output as CSV
on:
push:
branches:
- n2020h-issues-to-csv
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # Runs daily at midnight
jobs:
list-pull-requests:
runs-on: ubuntu-latest
steps:
# Checkout the repository to access any scripts or tools you might need
- name: Checkout repository
uses: actions/checkout@v3
# Set up Node.js to use jq command
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
# Fetch pull requests data and save it to pulls.json
- name: Fetch pull requests data
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
curl -H "Authorization: token $GITHUB_TOKEN" \
-H "Accept: application/vnd.github.v3+json" \
"https://api.github.com/repos/${{ github.repository }}/pulls?state=all&per_page=100" \
-o pulls.json
# Fetch linked issues for each PR
- name: Fetch linked issues for each PR
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
for pr_number in $(jq -r '.[].number' pulls.json); do \
curl -H "Authorization: token $GITHUB_TOKEN" \
-H "Accept: application/vnd.github.v3+json" \
"https://api.github.com/repos/${{ github.repository }}/issues/$pr_number/timeline?per_page=100" \
-o "timeline_$pr_number.json"; \
done
# Generate pull requests CSV including linked issues
- name: Generate pull requests CSV including linked issues
run: |
echo "PR Number,Title,Description,Author,State,Number of Commits,Number of Files Changed,Labels,Assignees,Reviewers,Linked Issues" > pull_requests.csv
for pr_number in $(jq -r '.[].number' pulls.json); do
timeline_file="timeline_$pr_number.json"
# Ensure the timeline file is not empty before processing
if [ -s "$timeline_file" ]; then
linked_issues=$(jq -r '[.[] | select(.event == "cross-referenced" and .source.issue) | .source.issue.number | tostring] | join(", ")' "$timeline_file")
else
linked_issues=""
fi
jq -r --arg linked_issues "$linked_issues" \
'.[] | select(.number == '$pr_number') | [
.number,
.title,
.body,
.user.login,
.state,
.commits,
.changed_files,
(.labels | map(.name) | join(",")),
(.assignees | map(.login) | join(",")),
(.requested_reviewers | map(.login) | join(",")),
$linked_issues
] | @csv' pulls.json >> pull_requests.csv
done
# Check the content of pull_requests.csv for debugging
- name: Display pull_requests.csv content
run: cat pull_requests.csv
# Commit and push the generated CSV to the repository
- name: Commit and push CSV
run: |
git config user.name "Automated"
git config user.email "[email protected]"
git add -f pull_requests.csv
timestamp=$(date -u)
git commit -m "Latest pull requests data: ${timestamp}" || exit 0
git push --force origin HEAD:refs/heads/n2020h-issues-to-csv
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
##------------------------------------------##
# name: List Pull Requests and Output as CSV
# on:
# push:
# branches:
# - n2020h-issues-to-csv
# workflow_dispatch:
# schedule:
# - cron: '0 0 * * *' # Runs daily at midnight
# # pull_request:
# # types: [opened, closed, reopened]
# # branches:
# # - n2020h-issues-to-csv
# jobs:
# list-pull-requests:
# runs-on: ubuntu-latest
# steps:
# # Checkout the repository to access any scripts or tools you might need
# - name: Checkout repository
# uses: actions/checkout@v3
# # Set up Node.js to use jq command
# - name: Set up Node.js
# uses: actions/setup-node@v3
# with:
# node-version: '20'
# # Fetch pull requests data and save it to pulls.json
# - name: Fetch pull requests data
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: |
# curl -H "Authorization: token $GITHUB_TOKEN" \
# -H "Accept: application/vnd.github.v3+json" \
# "https://api.github.com/repos/${{ github.repository }}/pulls?state=all&per_page=100" \
# -o pulls.json
# # Check the content of pulls.json for debugging
# - name: Display pulls.json content
# run: cat pulls.json
# # Generate pull requests CSV
# # (.body | capture_all("#(?<number>\\d+)"; "g") | join(","))
# - name: Generate pull requests CSV
# run: |
# echo "PR Number,Title,Description,Author,State,Number of Commits,Number of Files Changed,Labels,Assignees,Reviewers, Linked Issues" > pull_requests.csv
# jq -r '.[] | select(.user.login != "dependabot[bot]") | [
# .number,
# .title,
# .body,
# .user.login,
# .state,
# .commits,
# .changed_files,
# (.labels | map(.name) | join(",")),
# (.assignees | map(.login) | join(",")),
# (.requested_reviewers | map(.login) | join(",")),
# (if .body != null then .body | gsub("#";" ") | split(" ") | map(select(startswith("issue_number"))) | join(",") else "" end)
# ] | @csv' pulls.json >> pull_requests.csv
# # Check the content of pull_requests.csv for debugging
# - name: Display pull_requests.csv content
# run: cat pull_requests.csv
# # Commit and push the generated CSV to the repository
# - name: Commit and push CSV
# run: |
# git config user.name "Automated"
# git config user.email "[email protected]"
# git add -f pull_requests.csv
# timestamp=$(date -u)
# git commit -m "Latest pull requests data: ${timestamp}" || exit 0
# git push --force origin HEAD:refs/heads/n2020h-issues-to-csv
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
####-------------------------------------------------#######
# # Generate pull requests CSV
# - name: Generate pull requests CSV
# run: |
# run: |
# echo "PR Number,Title,Description,Author,State,Number of Commits,Number of Files Changed,Labels,Assignees,Reviewers" > hackforla_PRs.csv
# jq -r '.[] | [
# .number,
# .title,
# .body,
# .user.login,
# .state,
# .commits,
# .changed_files,
# (.labels | map(.name) | join(",")),
# (.assignees | map(.login) | join(",")),
# (.requested_reviewers | map(.login) | join(","))
# ] | @csv' pulls.json >> hackforla_PRs.csv
# # Commit and push the generated CSV to the repository
# - name: Commit and push CSV
# run: |
# git config user.name "Automated"
# git config user.email "[email protected]"
# git add -f hackforla_PRs.csv
# timestamp=$(date -u)
# git commit -m "Latest data: ${timestamp}" || exit 0
# git push --force origin HEAD:refs/heads/n2020h-issues-to-csv
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}