Skip to content

Commit 156f0ea

Browse files
committed
cleanups
1 parent 00f8243 commit 156f0ea

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

index.html

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,6 @@
141141
'Windows (installer)'
142142
];
143143

144-
if(run_id < 4158994618){
145-
matrix[5] = 'Windows (ucrt64)';
146-
matrix[6] = 'Windows Installer';
147-
}
148144
matrix.forEach(function(name){
149145
if(name === 'MacOS (macOS-13)' && jobs['MacOS']){
150146
name = 'MacOS'
@@ -203,7 +199,7 @@
203199
return octokit.actions.listWorkflowRunsForRepo({
204200
owner: "r-devel",
205201
repo: "r-svn",
206-
// branch: "main",
202+
branch: "main",
207203
event: "push",
208204
page: page,
209205
per_page: 30
@@ -212,8 +208,6 @@
212208
var allpromises = data.workflow_runs.map(function(run){
213209
if(run.head_commit.message.indexOf('git-svn-id') < 0)
214210
return;
215-
if(run.head_branch != 'main' && run.head_branch != 'master')
216-
return; //remove when we have enough 'main' runs to forget about 'master'
217211
var tr = add_row($('tbody'));
218212
fill_run(run, tr);
219213
const p1 = octokit.actions.listJobsForWorkflowRun({

0 commit comments

Comments
 (0)