apify-test-tools 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -0
- package/bin/build.ts +287 -0
- package/bin/consts.ts +6 -0
- package/bin/git.ts +56 -0
- package/bin/github.ts +75 -0
- package/bin/main.ts +145 -0
- package/bin/slack.ts +72 -0
- package/bin/test-report.ts +146 -0
- package/bin/types.ts +102 -0
- package/bin/utils.ts +204 -0
- package/dist/bin/build.d.ts +18 -0
- package/dist/bin/build.d.ts.map +1 -0
- package/dist/bin/build.js +222 -0
- package/dist/bin/build.js.map +1 -0
- package/dist/bin/consts.d.ts +4 -0
- package/dist/bin/consts.d.ts.map +1 -0
- package/dist/bin/consts.js +6 -0
- package/dist/bin/consts.js.map +1 -0
- package/dist/bin/git.d.ts +7 -0
- package/dist/bin/git.d.ts.map +1 -0
- package/dist/bin/git.js +47 -0
- package/dist/bin/git.js.map +1 -0
- package/dist/bin/github.d.ts +12 -0
- package/dist/bin/github.d.ts.map +1 -0
- package/dist/bin/github.js +64 -0
- package/dist/bin/github.js.map +1 -0
- package/dist/bin/main.d.ts +3 -0
- package/dist/bin/main.d.ts.map +1 -0
- package/dist/bin/main.js +117 -0
- package/dist/bin/main.js.map +1 -0
- package/dist/bin/slack.d.ts +12 -0
- package/dist/bin/slack.d.ts.map +1 -0
- package/dist/bin/slack.js +46 -0
- package/dist/bin/slack.js.map +1 -0
- package/dist/bin/test-report.d.ts +10 -0
- package/dist/bin/test-report.d.ts.map +1 -0
- package/dist/bin/test-report.js +74 -0
- package/dist/bin/test-report.js.map +1 -0
- package/dist/bin/types.d.ts +88 -0
- package/dist/bin/types.d.ts.map +1 -0
- package/dist/bin/types.js +2 -0
- package/dist/bin/types.js.map +1 -0
- package/dist/bin/utils.d.ts +26 -0
- package/dist/bin/utils.d.ts.map +1 -0
- package/dist/bin/utils.js +164 -0
- package/dist/bin/utils.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/consts.d.ts +3 -0
- package/dist/lib/consts.d.ts.map +1 -0
- package/dist/lib/consts.js +14 -0
- package/dist/lib/consts.js.map +1 -0
- package/dist/lib/extend-expect.d.ts +3 -0
- package/dist/lib/extend-expect.d.ts.map +1 -0
- package/dist/lib/extend-expect.js +228 -0
- package/dist/lib/extend-expect.js.map +1 -0
- package/dist/lib/lib.d.ts +16 -0
- package/dist/lib/lib.d.ts.map +1 -0
- package/dist/lib/lib.js +91 -0
- package/dist/lib/lib.js.map +1 -0
- package/dist/lib/run-test-result.d.ts +20 -0
- package/dist/lib/run-test-result.d.ts.map +1 -0
- package/dist/lib/run-test-result.js +62 -0
- package/dist/lib/run-test-result.js.map +1 -0
- package/dist/lib/types.d.ts +107 -0
- package/dist/lib/types.d.ts.map +1 -0
- package/dist/lib/types.js +2 -0
- package/dist/lib/types.js.map +1 -0
- package/dist/lib/utils.d.ts +7 -0
- package/dist/lib/utils.d.ts.map +1 -0
- package/dist/lib/utils.js +30 -0
- package/dist/lib/utils.js.map +1 -0
- package/dist/test/unit/custom-matchers.test.d.ts +2 -0
- package/dist/test/unit/custom-matchers.test.d.ts.map +1 -0
- package/dist/test/unit/custom-matchers.test.js +53 -0
- package/dist/test/unit/custom-matchers.test.js.map +1 -0
- package/dist/test/unit/should-built-and-test.test.d.ts +2 -0
- package/dist/test/unit/should-built-and-test.test.d.ts.map +1 -0
- package/dist/test/unit/should-built-and-test.test.js +136 -0
- package/dist/test/unit/should-built-and-test.test.js.map +1 -0
- package/dist/test/unit/test-actor.test.d.ts +2 -0
- package/dist/test/unit/test-actor.test.d.ts.map +1 -0
- package/dist/test/unit/test-actor.test.js +17 -0
- package/dist/test/unit/test-actor.test.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/example-github-events/pull-request.json +523 -0
- package/example-github-events/push.json +216 -0
- package/index.ts +2 -0
- package/lib/consts.ts +15 -0
- package/lib/extend-expect.ts +268 -0
- package/lib/lib.ts +134 -0
- package/lib/run-test-result.ts +70 -0
- package/lib/types.ts +131 -0
- package/lib/utils.ts +49 -0
- package/package.json +41 -0
- package/scripts/hook-job-started.sh +11 -0
- package/test/tsconfig.json +15 -0
- package/test/unit/custom-matchers.test.ts +61 -0
- package/test/unit/should-built-and-test.test.ts +166 -0
- package/test/unit/test-actor.test.ts +17 -0
- package/tsconfig.json +20 -0
|
@@ -0,0 +1,523 @@
|
|
|
1
|
+
{
|
|
2
|
+
"action": "synchronize",
|
|
3
|
+
"after": "c8b2b890bf0b2d2af80029f5ab02b6523c45c714",
|
|
4
|
+
"before": "cb5be6abb5038590a1927ea0a598a9d5b5e54e2a",
|
|
5
|
+
"number": 136,
|
|
6
|
+
"organization": {
|
|
7
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/69005150?v=4",
|
|
8
|
+
"description": "This organization houses projects that are not part of Apify itself, such as enterprise or marketplace developed actors and scrapers.",
|
|
9
|
+
"events_url": "https://api.github.com/orgs/apify-projects/events",
|
|
10
|
+
"hooks_url": "https://api.github.com/orgs/apify-projects/hooks",
|
|
11
|
+
"id": 69005150,
|
|
12
|
+
"issues_url": "https://api.github.com/orgs/apify-projects/issues",
|
|
13
|
+
"login": "apify-projects",
|
|
14
|
+
"members_url": "https://api.github.com/orgs/apify-projects/members{/member}",
|
|
15
|
+
"node_id": "MDEyOk9yZ2FuaXphdGlvbjY5MDA1MTUw",
|
|
16
|
+
"public_members_url": "https://api.github.com/orgs/apify-projects/public_members{/member}",
|
|
17
|
+
"repos_url": "https://api.github.com/orgs/apify-projects/repos",
|
|
18
|
+
"url": "https://api.github.com/orgs/apify-projects"
|
|
19
|
+
},
|
|
20
|
+
"pull_request": {
|
|
21
|
+
"_links": {
|
|
22
|
+
"comments": {
|
|
23
|
+
"href": "https://api.github.com/repos/apify-projects/store-youtube/issues/136/comments"
|
|
24
|
+
},
|
|
25
|
+
"commits": {
|
|
26
|
+
"href": "https://api.github.com/repos/apify-projects/store-youtube/pulls/136/commits"
|
|
27
|
+
},
|
|
28
|
+
"html": {
|
|
29
|
+
"href": "https://github.com/apify-projects/store-youtube/pull/136"
|
|
30
|
+
},
|
|
31
|
+
"issue": {
|
|
32
|
+
"href": "https://api.github.com/repos/apify-projects/store-youtube/issues/136"
|
|
33
|
+
},
|
|
34
|
+
"review_comment": {
|
|
35
|
+
"href": "https://api.github.com/repos/apify-projects/store-youtube/pulls/comments{/number}"
|
|
36
|
+
},
|
|
37
|
+
"review_comments": {
|
|
38
|
+
"href": "https://api.github.com/repos/apify-projects/store-youtube/pulls/136/comments"
|
|
39
|
+
},
|
|
40
|
+
"self": {
|
|
41
|
+
"href": "https://api.github.com/repos/apify-projects/store-youtube/pulls/136"
|
|
42
|
+
},
|
|
43
|
+
"statuses": {
|
|
44
|
+
"href": "https://api.github.com/repos/apify-projects/store-youtube/statuses/c8b2b890bf0b2d2af80029f5ab02b6523c45c714"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"active_lock_reason": null,
|
|
48
|
+
"additions": 6,
|
|
49
|
+
"assignee": null,
|
|
50
|
+
"assignees": [],
|
|
51
|
+
"author_association": "CONTRIBUTOR",
|
|
52
|
+
"auto_merge": null,
|
|
53
|
+
"base": {
|
|
54
|
+
"label": "apify-projects:master",
|
|
55
|
+
"ref": "master",
|
|
56
|
+
"repo": {
|
|
57
|
+
"allow_auto_merge": false,
|
|
58
|
+
"allow_forking": true,
|
|
59
|
+
"allow_merge_commit": false,
|
|
60
|
+
"allow_rebase_merge": true,
|
|
61
|
+
"allow_squash_merge": true,
|
|
62
|
+
"allow_update_branch": true,
|
|
63
|
+
"archive_url": "https://api.github.com/repos/apify-projects/store-youtube/{archive_format}{/ref}",
|
|
64
|
+
"archived": false,
|
|
65
|
+
"assignees_url": "https://api.github.com/repos/apify-projects/store-youtube/assignees{/user}",
|
|
66
|
+
"blobs_url": "https://api.github.com/repos/apify-projects/store-youtube/git/blobs{/sha}",
|
|
67
|
+
"branches_url": "https://api.github.com/repos/apify-projects/store-youtube/branches{/branch}",
|
|
68
|
+
"clone_url": "https://github.com/apify-projects/store-youtube.git",
|
|
69
|
+
"collaborators_url": "https://api.github.com/repos/apify-projects/store-youtube/collaborators{/collaborator}",
|
|
70
|
+
"comments_url": "https://api.github.com/repos/apify-projects/store-youtube/comments{/number}",
|
|
71
|
+
"commits_url": "https://api.github.com/repos/apify-projects/store-youtube/commits{/sha}",
|
|
72
|
+
"compare_url": "https://api.github.com/repos/apify-projects/store-youtube/compare/{base}...{head}",
|
|
73
|
+
"contents_url": "https://api.github.com/repos/apify-projects/store-youtube/contents/{+path}",
|
|
74
|
+
"contributors_url": "https://api.github.com/repos/apify-projects/store-youtube/contributors",
|
|
75
|
+
"created_at": "2022-09-01T18:56:38Z",
|
|
76
|
+
"default_branch": "master",
|
|
77
|
+
"delete_branch_on_merge": true,
|
|
78
|
+
"deployments_url": "https://api.github.com/repos/apify-projects/store-youtube/deployments",
|
|
79
|
+
"description": null,
|
|
80
|
+
"disabled": false,
|
|
81
|
+
"downloads_url": "https://api.github.com/repos/apify-projects/store-youtube/downloads",
|
|
82
|
+
"events_url": "https://api.github.com/repos/apify-projects/store-youtube/events",
|
|
83
|
+
"fork": false,
|
|
84
|
+
"forks": 1,
|
|
85
|
+
"forks_count": 1,
|
|
86
|
+
"forks_url": "https://api.github.com/repos/apify-projects/store-youtube/forks",
|
|
87
|
+
"full_name": "apify-projects/store-youtube",
|
|
88
|
+
"git_commits_url": "https://api.github.com/repos/apify-projects/store-youtube/git/commits{/sha}",
|
|
89
|
+
"git_refs_url": "https://api.github.com/repos/apify-projects/store-youtube/git/refs{/sha}",
|
|
90
|
+
"git_tags_url": "https://api.github.com/repos/apify-projects/store-youtube/git/tags{/sha}",
|
|
91
|
+
"git_url": "git://github.com/apify-projects/store-youtube.git",
|
|
92
|
+
"has_discussions": false,
|
|
93
|
+
"has_downloads": true,
|
|
94
|
+
"has_issues": true,
|
|
95
|
+
"has_pages": false,
|
|
96
|
+
"has_projects": true,
|
|
97
|
+
"has_wiki": false,
|
|
98
|
+
"homepage": null,
|
|
99
|
+
"hooks_url": "https://api.github.com/repos/apify-projects/store-youtube/hooks",
|
|
100
|
+
"html_url": "https://github.com/apify-projects/store-youtube",
|
|
101
|
+
"id": 531649207,
|
|
102
|
+
"is_template": false,
|
|
103
|
+
"issue_comment_url": "https://api.github.com/repos/apify-projects/store-youtube/issues/comments{/number}",
|
|
104
|
+
"issue_events_url": "https://api.github.com/repos/apify-projects/store-youtube/issues/events{/number}",
|
|
105
|
+
"issues_url": "https://api.github.com/repos/apify-projects/store-youtube/issues{/number}",
|
|
106
|
+
"keys_url": "https://api.github.com/repos/apify-projects/store-youtube/keys{/key_id}",
|
|
107
|
+
"labels_url": "https://api.github.com/repos/apify-projects/store-youtube/labels{/name}",
|
|
108
|
+
"language": "TypeScript",
|
|
109
|
+
"languages_url": "https://api.github.com/repos/apify-projects/store-youtube/languages",
|
|
110
|
+
"license": {
|
|
111
|
+
"key": "apache-2.0",
|
|
112
|
+
"name": "Apache License 2.0",
|
|
113
|
+
"node_id": "MDc6TGljZW5zZTI=",
|
|
114
|
+
"spdx_id": "Apache-2.0",
|
|
115
|
+
"url": "https://api.github.com/licenses/apache-2.0"
|
|
116
|
+
},
|
|
117
|
+
"merge_commit_message": "PR_TITLE",
|
|
118
|
+
"merge_commit_title": "MERGE_MESSAGE",
|
|
119
|
+
"merges_url": "https://api.github.com/repos/apify-projects/store-youtube/merges",
|
|
120
|
+
"milestones_url": "https://api.github.com/repos/apify-projects/store-youtube/milestones{/number}",
|
|
121
|
+
"mirror_url": null,
|
|
122
|
+
"name": "store-youtube",
|
|
123
|
+
"node_id": "R_kgDOH7BStw",
|
|
124
|
+
"notifications_url": "https://api.github.com/repos/apify-projects/store-youtube/notifications{?since,all,participating}",
|
|
125
|
+
"open_issues": 10,
|
|
126
|
+
"open_issues_count": 10,
|
|
127
|
+
"owner": {
|
|
128
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/69005150?v=4",
|
|
129
|
+
"events_url": "https://api.github.com/users/apify-projects/events{/privacy}",
|
|
130
|
+
"followers_url": "https://api.github.com/users/apify-projects/followers",
|
|
131
|
+
"following_url": "https://api.github.com/users/apify-projects/following{/other_user}",
|
|
132
|
+
"gists_url": "https://api.github.com/users/apify-projects/gists{/gist_id}",
|
|
133
|
+
"gravatar_id": "",
|
|
134
|
+
"html_url": "https://github.com/apify-projects",
|
|
135
|
+
"id": 69005150,
|
|
136
|
+
"login": "apify-projects",
|
|
137
|
+
"node_id": "MDEyOk9yZ2FuaXphdGlvbjY5MDA1MTUw",
|
|
138
|
+
"organizations_url": "https://api.github.com/users/apify-projects/orgs",
|
|
139
|
+
"received_events_url": "https://api.github.com/users/apify-projects/received_events",
|
|
140
|
+
"repos_url": "https://api.github.com/users/apify-projects/repos",
|
|
141
|
+
"site_admin": false,
|
|
142
|
+
"starred_url": "https://api.github.com/users/apify-projects/starred{/owner}{/repo}",
|
|
143
|
+
"subscriptions_url": "https://api.github.com/users/apify-projects/subscriptions",
|
|
144
|
+
"type": "Organization",
|
|
145
|
+
"url": "https://api.github.com/users/apify-projects"
|
|
146
|
+
},
|
|
147
|
+
"private": true,
|
|
148
|
+
"pulls_url": "https://api.github.com/repos/apify-projects/store-youtube/pulls{/number}",
|
|
149
|
+
"pushed_at": "2024-03-25T20:07:51Z",
|
|
150
|
+
"releases_url": "https://api.github.com/repos/apify-projects/store-youtube/releases{/id}",
|
|
151
|
+
"size": 1222,
|
|
152
|
+
"squash_merge_commit_message": "COMMIT_MESSAGES",
|
|
153
|
+
"squash_merge_commit_title": "COMMIT_OR_PR_TITLE",
|
|
154
|
+
"ssh_url": "git@github.com:apify-projects/store-youtube.git",
|
|
155
|
+
"stargazers_count": 0,
|
|
156
|
+
"stargazers_url": "https://api.github.com/repos/apify-projects/store-youtube/stargazers",
|
|
157
|
+
"statuses_url": "https://api.github.com/repos/apify-projects/store-youtube/statuses/{sha}",
|
|
158
|
+
"subscribers_url": "https://api.github.com/repos/apify-projects/store-youtube/subscribers",
|
|
159
|
+
"subscription_url": "https://api.github.com/repos/apify-projects/store-youtube/subscription",
|
|
160
|
+
"svn_url": "https://github.com/apify-projects/store-youtube",
|
|
161
|
+
"tags_url": "https://api.github.com/repos/apify-projects/store-youtube/tags",
|
|
162
|
+
"teams_url": "https://api.github.com/repos/apify-projects/store-youtube/teams",
|
|
163
|
+
"topics": [],
|
|
164
|
+
"trees_url": "https://api.github.com/repos/apify-projects/store-youtube/git/trees{/sha}",
|
|
165
|
+
"updated_at": "2023-02-24T14:04:00Z",
|
|
166
|
+
"url": "https://api.github.com/repos/apify-projects/store-youtube",
|
|
167
|
+
"use_squash_pr_title_as_default": false,
|
|
168
|
+
"visibility": "private",
|
|
169
|
+
"watchers": 0,
|
|
170
|
+
"watchers_count": 0,
|
|
171
|
+
"web_commit_signoff_required": false
|
|
172
|
+
},
|
|
173
|
+
"sha": "1aa5a14855943d8e5bb8706968de7b4b11fbd415",
|
|
174
|
+
"user": {
|
|
175
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/69005150?v=4",
|
|
176
|
+
"events_url": "https://api.github.com/users/apify-projects/events{/privacy}",
|
|
177
|
+
"followers_url": "https://api.github.com/users/apify-projects/followers",
|
|
178
|
+
"following_url": "https://api.github.com/users/apify-projects/following{/other_user}",
|
|
179
|
+
"gists_url": "https://api.github.com/users/apify-projects/gists{/gist_id}",
|
|
180
|
+
"gravatar_id": "",
|
|
181
|
+
"html_url": "https://github.com/apify-projects",
|
|
182
|
+
"id": 69005150,
|
|
183
|
+
"login": "apify-projects",
|
|
184
|
+
"node_id": "MDEyOk9yZ2FuaXphdGlvbjY5MDA1MTUw",
|
|
185
|
+
"organizations_url": "https://api.github.com/users/apify-projects/orgs",
|
|
186
|
+
"received_events_url": "https://api.github.com/users/apify-projects/received_events",
|
|
187
|
+
"repos_url": "https://api.github.com/users/apify-projects/repos",
|
|
188
|
+
"site_admin": false,
|
|
189
|
+
"starred_url": "https://api.github.com/users/apify-projects/starred{/owner}{/repo}",
|
|
190
|
+
"subscriptions_url": "https://api.github.com/users/apify-projects/subscriptions",
|
|
191
|
+
"type": "Organization",
|
|
192
|
+
"url": "https://api.github.com/users/apify-projects"
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"body": "just an experiment, more [here](https://github.com/apify-projects/store-utils-actors/pull/10)",
|
|
196
|
+
"changed_files": 1,
|
|
197
|
+
"closed_at": null,
|
|
198
|
+
"comments": 0,
|
|
199
|
+
"comments_url": "https://api.github.com/repos/apify-projects/store-youtube/issues/136/comments",
|
|
200
|
+
"commits": 6,
|
|
201
|
+
"commits_url": "https://api.github.com/repos/apify-projects/store-youtube/pulls/136/commits",
|
|
202
|
+
"created_at": "2024-02-29T18:12:50Z",
|
|
203
|
+
"deletions": 20,
|
|
204
|
+
"diff_url": "https://github.com/apify-projects/store-youtube/pull/136.diff",
|
|
205
|
+
"draft": false,
|
|
206
|
+
"head": {
|
|
207
|
+
"label": "apify-projects:build/self-hosted-gh-runner",
|
|
208
|
+
"ref": "build/self-hosted-gh-runner",
|
|
209
|
+
"repo": {
|
|
210
|
+
"allow_auto_merge": false,
|
|
211
|
+
"allow_forking": true,
|
|
212
|
+
"allow_merge_commit": false,
|
|
213
|
+
"allow_rebase_merge": true,
|
|
214
|
+
"allow_squash_merge": true,
|
|
215
|
+
"allow_update_branch": true,
|
|
216
|
+
"archive_url": "https://api.github.com/repos/apify-projects/store-youtube/{archive_format}{/ref}",
|
|
217
|
+
"archived": false,
|
|
218
|
+
"assignees_url": "https://api.github.com/repos/apify-projects/store-youtube/assignees{/user}",
|
|
219
|
+
"blobs_url": "https://api.github.com/repos/apify-projects/store-youtube/git/blobs{/sha}",
|
|
220
|
+
"branches_url": "https://api.github.com/repos/apify-projects/store-youtube/branches{/branch}",
|
|
221
|
+
"clone_url": "https://github.com/apify-projects/store-youtube.git",
|
|
222
|
+
"collaborators_url": "https://api.github.com/repos/apify-projects/store-youtube/collaborators{/collaborator}",
|
|
223
|
+
"comments_url": "https://api.github.com/repos/apify-projects/store-youtube/comments{/number}",
|
|
224
|
+
"commits_url": "https://api.github.com/repos/apify-projects/store-youtube/commits{/sha}",
|
|
225
|
+
"compare_url": "https://api.github.com/repos/apify-projects/store-youtube/compare/{base}...{head}",
|
|
226
|
+
"contents_url": "https://api.github.com/repos/apify-projects/store-youtube/contents/{+path}",
|
|
227
|
+
"contributors_url": "https://api.github.com/repos/apify-projects/store-youtube/contributors",
|
|
228
|
+
"created_at": "2022-09-01T18:56:38Z",
|
|
229
|
+
"default_branch": "master",
|
|
230
|
+
"delete_branch_on_merge": true,
|
|
231
|
+
"deployments_url": "https://api.github.com/repos/apify-projects/store-youtube/deployments",
|
|
232
|
+
"description": null,
|
|
233
|
+
"disabled": false,
|
|
234
|
+
"downloads_url": "https://api.github.com/repos/apify-projects/store-youtube/downloads",
|
|
235
|
+
"events_url": "https://api.github.com/repos/apify-projects/store-youtube/events",
|
|
236
|
+
"fork": false,
|
|
237
|
+
"forks": 1,
|
|
238
|
+
"forks_count": 1,
|
|
239
|
+
"forks_url": "https://api.github.com/repos/apify-projects/store-youtube/forks",
|
|
240
|
+
"full_name": "apify-projects/store-youtube",
|
|
241
|
+
"git_commits_url": "https://api.github.com/repos/apify-projects/store-youtube/git/commits{/sha}",
|
|
242
|
+
"git_refs_url": "https://api.github.com/repos/apify-projects/store-youtube/git/refs{/sha}",
|
|
243
|
+
"git_tags_url": "https://api.github.com/repos/apify-projects/store-youtube/git/tags{/sha}",
|
|
244
|
+
"git_url": "git://github.com/apify-projects/store-youtube.git",
|
|
245
|
+
"has_discussions": false,
|
|
246
|
+
"has_downloads": true,
|
|
247
|
+
"has_issues": true,
|
|
248
|
+
"has_pages": false,
|
|
249
|
+
"has_projects": true,
|
|
250
|
+
"has_wiki": false,
|
|
251
|
+
"homepage": null,
|
|
252
|
+
"hooks_url": "https://api.github.com/repos/apify-projects/store-youtube/hooks",
|
|
253
|
+
"html_url": "https://github.com/apify-projects/store-youtube",
|
|
254
|
+
"id": 531649207,
|
|
255
|
+
"is_template": false,
|
|
256
|
+
"issue_comment_url": "https://api.github.com/repos/apify-projects/store-youtube/issues/comments{/number}",
|
|
257
|
+
"issue_events_url": "https://api.github.com/repos/apify-projects/store-youtube/issues/events{/number}",
|
|
258
|
+
"issues_url": "https://api.github.com/repos/apify-projects/store-youtube/issues{/number}",
|
|
259
|
+
"keys_url": "https://api.github.com/repos/apify-projects/store-youtube/keys{/key_id}",
|
|
260
|
+
"labels_url": "https://api.github.com/repos/apify-projects/store-youtube/labels{/name}",
|
|
261
|
+
"language": "TypeScript",
|
|
262
|
+
"languages_url": "https://api.github.com/repos/apify-projects/store-youtube/languages",
|
|
263
|
+
"license": {
|
|
264
|
+
"key": "apache-2.0",
|
|
265
|
+
"name": "Apache License 2.0",
|
|
266
|
+
"node_id": "MDc6TGljZW5zZTI=",
|
|
267
|
+
"spdx_id": "Apache-2.0",
|
|
268
|
+
"url": "https://api.github.com/licenses/apache-2.0"
|
|
269
|
+
},
|
|
270
|
+
"merge_commit_message": "PR_TITLE",
|
|
271
|
+
"merge_commit_title": "MERGE_MESSAGE",
|
|
272
|
+
"merges_url": "https://api.github.com/repos/apify-projects/store-youtube/merges",
|
|
273
|
+
"milestones_url": "https://api.github.com/repos/apify-projects/store-youtube/milestones{/number}",
|
|
274
|
+
"mirror_url": null,
|
|
275
|
+
"name": "store-youtube",
|
|
276
|
+
"node_id": "R_kgDOH7BStw",
|
|
277
|
+
"notifications_url": "https://api.github.com/repos/apify-projects/store-youtube/notifications{?since,all,participating}",
|
|
278
|
+
"open_issues": 10,
|
|
279
|
+
"open_issues_count": 10,
|
|
280
|
+
"owner": {
|
|
281
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/69005150?v=4",
|
|
282
|
+
"events_url": "https://api.github.com/users/apify-projects/events{/privacy}",
|
|
283
|
+
"followers_url": "https://api.github.com/users/apify-projects/followers",
|
|
284
|
+
"following_url": "https://api.github.com/users/apify-projects/following{/other_user}",
|
|
285
|
+
"gists_url": "https://api.github.com/users/apify-projects/gists{/gist_id}",
|
|
286
|
+
"gravatar_id": "",
|
|
287
|
+
"html_url": "https://github.com/apify-projects",
|
|
288
|
+
"id": 69005150,
|
|
289
|
+
"login": "apify-projects",
|
|
290
|
+
"node_id": "MDEyOk9yZ2FuaXphdGlvbjY5MDA1MTUw",
|
|
291
|
+
"organizations_url": "https://api.github.com/users/apify-projects/orgs",
|
|
292
|
+
"received_events_url": "https://api.github.com/users/apify-projects/received_events",
|
|
293
|
+
"repos_url": "https://api.github.com/users/apify-projects/repos",
|
|
294
|
+
"site_admin": false,
|
|
295
|
+
"starred_url": "https://api.github.com/users/apify-projects/starred{/owner}{/repo}",
|
|
296
|
+
"subscriptions_url": "https://api.github.com/users/apify-projects/subscriptions",
|
|
297
|
+
"type": "Organization",
|
|
298
|
+
"url": "https://api.github.com/users/apify-projects"
|
|
299
|
+
},
|
|
300
|
+
"private": true,
|
|
301
|
+
"pulls_url": "https://api.github.com/repos/apify-projects/store-youtube/pulls{/number}",
|
|
302
|
+
"pushed_at": "2024-03-25T20:07:51Z",
|
|
303
|
+
"releases_url": "https://api.github.com/repos/apify-projects/store-youtube/releases{/id}",
|
|
304
|
+
"size": 1222,
|
|
305
|
+
"squash_merge_commit_message": "COMMIT_MESSAGES",
|
|
306
|
+
"squash_merge_commit_title": "COMMIT_OR_PR_TITLE",
|
|
307
|
+
"ssh_url": "git@github.com:apify-projects/store-youtube.git",
|
|
308
|
+
"stargazers_count": 0,
|
|
309
|
+
"stargazers_url": "https://api.github.com/repos/apify-projects/store-youtube/stargazers",
|
|
310
|
+
"statuses_url": "https://api.github.com/repos/apify-projects/store-youtube/statuses/{sha}",
|
|
311
|
+
"subscribers_url": "https://api.github.com/repos/apify-projects/store-youtube/subscribers",
|
|
312
|
+
"subscription_url": "https://api.github.com/repos/apify-projects/store-youtube/subscription",
|
|
313
|
+
"svn_url": "https://github.com/apify-projects/store-youtube",
|
|
314
|
+
"tags_url": "https://api.github.com/repos/apify-projects/store-youtube/tags",
|
|
315
|
+
"teams_url": "https://api.github.com/repos/apify-projects/store-youtube/teams",
|
|
316
|
+
"topics": [],
|
|
317
|
+
"trees_url": "https://api.github.com/repos/apify-projects/store-youtube/git/trees{/sha}",
|
|
318
|
+
"updated_at": "2023-02-24T14:04:00Z",
|
|
319
|
+
"url": "https://api.github.com/repos/apify-projects/store-youtube",
|
|
320
|
+
"use_squash_pr_title_as_default": false,
|
|
321
|
+
"visibility": "private",
|
|
322
|
+
"watchers": 0,
|
|
323
|
+
"watchers_count": 0,
|
|
324
|
+
"web_commit_signoff_required": false
|
|
325
|
+
},
|
|
326
|
+
"sha": "c8b2b890bf0b2d2af80029f5ab02b6523c45c714",
|
|
327
|
+
"user": {
|
|
328
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/69005150?v=4",
|
|
329
|
+
"events_url": "https://api.github.com/users/apify-projects/events{/privacy}",
|
|
330
|
+
"followers_url": "https://api.github.com/users/apify-projects/followers",
|
|
331
|
+
"following_url": "https://api.github.com/users/apify-projects/following{/other_user}",
|
|
332
|
+
"gists_url": "https://api.github.com/users/apify-projects/gists{/gist_id}",
|
|
333
|
+
"gravatar_id": "",
|
|
334
|
+
"html_url": "https://github.com/apify-projects",
|
|
335
|
+
"id": 69005150,
|
|
336
|
+
"login": "apify-projects",
|
|
337
|
+
"node_id": "MDEyOk9yZ2FuaXphdGlvbjY5MDA1MTUw",
|
|
338
|
+
"organizations_url": "https://api.github.com/users/apify-projects/orgs",
|
|
339
|
+
"received_events_url": "https://api.github.com/users/apify-projects/received_events",
|
|
340
|
+
"repos_url": "https://api.github.com/users/apify-projects/repos",
|
|
341
|
+
"site_admin": false,
|
|
342
|
+
"starred_url": "https://api.github.com/users/apify-projects/starred{/owner}{/repo}",
|
|
343
|
+
"subscriptions_url": "https://api.github.com/users/apify-projects/subscriptions",
|
|
344
|
+
"type": "Organization",
|
|
345
|
+
"url": "https://api.github.com/users/apify-projects"
|
|
346
|
+
}
|
|
347
|
+
},
|
|
348
|
+
"html_url": "https://github.com/apify-projects/store-youtube/pull/136",
|
|
349
|
+
"id": 1750285021,
|
|
350
|
+
"issue_url": "https://api.github.com/repos/apify-projects/store-youtube/issues/136",
|
|
351
|
+
"labels": [],
|
|
352
|
+
"locked": false,
|
|
353
|
+
"maintainer_can_modify": false,
|
|
354
|
+
"merge_commit_sha": "60a4ba98d2a9c52341a0432e7663889629f446e8",
|
|
355
|
+
"mergeable": null,
|
|
356
|
+
"mergeable_state": "unknown",
|
|
357
|
+
"merged": false,
|
|
358
|
+
"merged_at": null,
|
|
359
|
+
"merged_by": null,
|
|
360
|
+
"milestone": null,
|
|
361
|
+
"node_id": "PR_kwDOH7BSt85oUzrd",
|
|
362
|
+
"number": 136,
|
|
363
|
+
"patch_url": "https://github.com/apify-projects/store-youtube/pull/136.patch",
|
|
364
|
+
"rebaseable": null,
|
|
365
|
+
"requested_reviewers": [],
|
|
366
|
+
"requested_teams": [],
|
|
367
|
+
"review_comment_url": "https://api.github.com/repos/apify-projects/store-youtube/pulls/comments{/number}",
|
|
368
|
+
"review_comments": 0,
|
|
369
|
+
"review_comments_url": "https://api.github.com/repos/apify-projects/store-youtube/pulls/136/comments",
|
|
370
|
+
"state": "open",
|
|
371
|
+
"statuses_url": "https://api.github.com/repos/apify-projects/store-youtube/statuses/c8b2b890bf0b2d2af80029f5ab02b6523c45c714",
|
|
372
|
+
"title": "WIP: build: add self-hosted GH runner",
|
|
373
|
+
"updated_at": "2024-03-25T20:07:51Z",
|
|
374
|
+
"url": "https://api.github.com/repos/apify-projects/store-youtube/pulls/136",
|
|
375
|
+
"user": {
|
|
376
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/31389543?v=4",
|
|
377
|
+
"events_url": "https://api.github.com/users/oklinov/events{/privacy}",
|
|
378
|
+
"followers_url": "https://api.github.com/users/oklinov/followers",
|
|
379
|
+
"following_url": "https://api.github.com/users/oklinov/following{/other_user}",
|
|
380
|
+
"gists_url": "https://api.github.com/users/oklinov/gists{/gist_id}",
|
|
381
|
+
"gravatar_id": "",
|
|
382
|
+
"html_url": "https://github.com/oklinov",
|
|
383
|
+
"id": 31389543,
|
|
384
|
+
"login": "oklinov",
|
|
385
|
+
"node_id": "MDQ6VXNlcjMxMzg5NTQz",
|
|
386
|
+
"organizations_url": "https://api.github.com/users/oklinov/orgs",
|
|
387
|
+
"received_events_url": "https://api.github.com/users/oklinov/received_events",
|
|
388
|
+
"repos_url": "https://api.github.com/users/oklinov/repos",
|
|
389
|
+
"site_admin": false,
|
|
390
|
+
"starred_url": "https://api.github.com/users/oklinov/starred{/owner}{/repo}",
|
|
391
|
+
"subscriptions_url": "https://api.github.com/users/oklinov/subscriptions",
|
|
392
|
+
"type": "User",
|
|
393
|
+
"url": "https://api.github.com/users/oklinov"
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"repository": {
|
|
397
|
+
"allow_forking": true,
|
|
398
|
+
"archive_url": "https://api.github.com/repos/apify-projects/store-youtube/{archive_format}{/ref}",
|
|
399
|
+
"archived": false,
|
|
400
|
+
"assignees_url": "https://api.github.com/repos/apify-projects/store-youtube/assignees{/user}",
|
|
401
|
+
"blobs_url": "https://api.github.com/repos/apify-projects/store-youtube/git/blobs{/sha}",
|
|
402
|
+
"branches_url": "https://api.github.com/repos/apify-projects/store-youtube/branches{/branch}",
|
|
403
|
+
"clone_url": "https://github.com/apify-projects/store-youtube.git",
|
|
404
|
+
"collaborators_url": "https://api.github.com/repos/apify-projects/store-youtube/collaborators{/collaborator}",
|
|
405
|
+
"comments_url": "https://api.github.com/repos/apify-projects/store-youtube/comments{/number}",
|
|
406
|
+
"commits_url": "https://api.github.com/repos/apify-projects/store-youtube/commits{/sha}",
|
|
407
|
+
"compare_url": "https://api.github.com/repos/apify-projects/store-youtube/compare/{base}...{head}",
|
|
408
|
+
"contents_url": "https://api.github.com/repos/apify-projects/store-youtube/contents/{+path}",
|
|
409
|
+
"contributors_url": "https://api.github.com/repos/apify-projects/store-youtube/contributors",
|
|
410
|
+
"created_at": "2022-09-01T18:56:38Z",
|
|
411
|
+
"custom_properties": {},
|
|
412
|
+
"default_branch": "master",
|
|
413
|
+
"deployments_url": "https://api.github.com/repos/apify-projects/store-youtube/deployments",
|
|
414
|
+
"description": null,
|
|
415
|
+
"disabled": false,
|
|
416
|
+
"downloads_url": "https://api.github.com/repos/apify-projects/store-youtube/downloads",
|
|
417
|
+
"events_url": "https://api.github.com/repos/apify-projects/store-youtube/events",
|
|
418
|
+
"fork": false,
|
|
419
|
+
"forks": 1,
|
|
420
|
+
"forks_count": 1,
|
|
421
|
+
"forks_url": "https://api.github.com/repos/apify-projects/store-youtube/forks",
|
|
422
|
+
"full_name": "apify-projects/store-youtube",
|
|
423
|
+
"git_commits_url": "https://api.github.com/repos/apify-projects/store-youtube/git/commits{/sha}",
|
|
424
|
+
"git_refs_url": "https://api.github.com/repos/apify-projects/store-youtube/git/refs{/sha}",
|
|
425
|
+
"git_tags_url": "https://api.github.com/repos/apify-projects/store-youtube/git/tags{/sha}",
|
|
426
|
+
"git_url": "git://github.com/apify-projects/store-youtube.git",
|
|
427
|
+
"has_discussions": false,
|
|
428
|
+
"has_downloads": true,
|
|
429
|
+
"has_issues": true,
|
|
430
|
+
"has_pages": false,
|
|
431
|
+
"has_projects": true,
|
|
432
|
+
"has_wiki": false,
|
|
433
|
+
"homepage": null,
|
|
434
|
+
"hooks_url": "https://api.github.com/repos/apify-projects/store-youtube/hooks",
|
|
435
|
+
"html_url": "https://github.com/apify-projects/store-youtube",
|
|
436
|
+
"id": 531649207,
|
|
437
|
+
"is_template": false,
|
|
438
|
+
"issue_comment_url": "https://api.github.com/repos/apify-projects/store-youtube/issues/comments{/number}",
|
|
439
|
+
"issue_events_url": "https://api.github.com/repos/apify-projects/store-youtube/issues/events{/number}",
|
|
440
|
+
"issues_url": "https://api.github.com/repos/apify-projects/store-youtube/issues{/number}",
|
|
441
|
+
"keys_url": "https://api.github.com/repos/apify-projects/store-youtube/keys{/key_id}",
|
|
442
|
+
"labels_url": "https://api.github.com/repos/apify-projects/store-youtube/labels{/name}",
|
|
443
|
+
"language": "TypeScript",
|
|
444
|
+
"languages_url": "https://api.github.com/repos/apify-projects/store-youtube/languages",
|
|
445
|
+
"license": {
|
|
446
|
+
"key": "apache-2.0",
|
|
447
|
+
"name": "Apache License 2.0",
|
|
448
|
+
"node_id": "MDc6TGljZW5zZTI=",
|
|
449
|
+
"spdx_id": "Apache-2.0",
|
|
450
|
+
"url": "https://api.github.com/licenses/apache-2.0"
|
|
451
|
+
},
|
|
452
|
+
"merges_url": "https://api.github.com/repos/apify-projects/store-youtube/merges",
|
|
453
|
+
"milestones_url": "https://api.github.com/repos/apify-projects/store-youtube/milestones{/number}",
|
|
454
|
+
"mirror_url": null,
|
|
455
|
+
"name": "store-youtube",
|
|
456
|
+
"node_id": "R_kgDOH7BStw",
|
|
457
|
+
"notifications_url": "https://api.github.com/repos/apify-projects/store-youtube/notifications{?since,all,participating}",
|
|
458
|
+
"open_issues": 10,
|
|
459
|
+
"open_issues_count": 10,
|
|
460
|
+
"owner": {
|
|
461
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/69005150?v=4",
|
|
462
|
+
"events_url": "https://api.github.com/users/apify-projects/events{/privacy}",
|
|
463
|
+
"followers_url": "https://api.github.com/users/apify-projects/followers",
|
|
464
|
+
"following_url": "https://api.github.com/users/apify-projects/following{/other_user}",
|
|
465
|
+
"gists_url": "https://api.github.com/users/apify-projects/gists{/gist_id}",
|
|
466
|
+
"gravatar_id": "",
|
|
467
|
+
"html_url": "https://github.com/apify-projects",
|
|
468
|
+
"id": 69005150,
|
|
469
|
+
"login": "apify-projects",
|
|
470
|
+
"node_id": "MDEyOk9yZ2FuaXphdGlvbjY5MDA1MTUw",
|
|
471
|
+
"organizations_url": "https://api.github.com/users/apify-projects/orgs",
|
|
472
|
+
"received_events_url": "https://api.github.com/users/apify-projects/received_events",
|
|
473
|
+
"repos_url": "https://api.github.com/users/apify-projects/repos",
|
|
474
|
+
"site_admin": false,
|
|
475
|
+
"starred_url": "https://api.github.com/users/apify-projects/starred{/owner}{/repo}",
|
|
476
|
+
"subscriptions_url": "https://api.github.com/users/apify-projects/subscriptions",
|
|
477
|
+
"type": "Organization",
|
|
478
|
+
"url": "https://api.github.com/users/apify-projects"
|
|
479
|
+
},
|
|
480
|
+
"private": true,
|
|
481
|
+
"pulls_url": "https://api.github.com/repos/apify-projects/store-youtube/pulls{/number}",
|
|
482
|
+
"pushed_at": "2024-03-25T20:07:51Z",
|
|
483
|
+
"releases_url": "https://api.github.com/repos/apify-projects/store-youtube/releases{/id}",
|
|
484
|
+
"size": 1222,
|
|
485
|
+
"ssh_url": "git@github.com:apify-projects/store-youtube.git",
|
|
486
|
+
"stargazers_count": 0,
|
|
487
|
+
"stargazers_url": "https://api.github.com/repos/apify-projects/store-youtube/stargazers",
|
|
488
|
+
"statuses_url": "https://api.github.com/repos/apify-projects/store-youtube/statuses/{sha}",
|
|
489
|
+
"subscribers_url": "https://api.github.com/repos/apify-projects/store-youtube/subscribers",
|
|
490
|
+
"subscription_url": "https://api.github.com/repos/apify-projects/store-youtube/subscription",
|
|
491
|
+
"svn_url": "https://github.com/apify-projects/store-youtube",
|
|
492
|
+
"tags_url": "https://api.github.com/repos/apify-projects/store-youtube/tags",
|
|
493
|
+
"teams_url": "https://api.github.com/repos/apify-projects/store-youtube/teams",
|
|
494
|
+
"topics": [],
|
|
495
|
+
"trees_url": "https://api.github.com/repos/apify-projects/store-youtube/git/trees{/sha}",
|
|
496
|
+
"updated_at": "2023-02-24T14:04:00Z",
|
|
497
|
+
"url": "https://api.github.com/repos/apify-projects/store-youtube",
|
|
498
|
+
"visibility": "private",
|
|
499
|
+
"watchers": 0,
|
|
500
|
+
"watchers_count": 0,
|
|
501
|
+
"web_commit_signoff_required": false
|
|
502
|
+
},
|
|
503
|
+
"sender": {
|
|
504
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/31389543?v=4",
|
|
505
|
+
"events_url": "https://api.github.com/users/oklinov/events{/privacy}",
|
|
506
|
+
"followers_url": "https://api.github.com/users/oklinov/followers",
|
|
507
|
+
"following_url": "https://api.github.com/users/oklinov/following{/other_user}",
|
|
508
|
+
"gists_url": "https://api.github.com/users/oklinov/gists{/gist_id}",
|
|
509
|
+
"gravatar_id": "",
|
|
510
|
+
"html_url": "https://github.com/oklinov",
|
|
511
|
+
"id": 31389543,
|
|
512
|
+
"login": "oklinov",
|
|
513
|
+
"node_id": "MDQ6VXNlcjMxMzg5NTQz",
|
|
514
|
+
"organizations_url": "https://api.github.com/users/oklinov/orgs",
|
|
515
|
+
"received_events_url": "https://api.github.com/users/oklinov/received_events",
|
|
516
|
+
"repos_url": "https://api.github.com/users/oklinov/repos",
|
|
517
|
+
"site_admin": false,
|
|
518
|
+
"starred_url": "https://api.github.com/users/oklinov/starred{/owner}{/repo}",
|
|
519
|
+
"subscriptions_url": "https://api.github.com/users/oklinov/subscriptions",
|
|
520
|
+
"type": "User",
|
|
521
|
+
"url": "https://api.github.com/users/oklinov"
|
|
522
|
+
}
|
|
523
|
+
}
|