Skip to content

Commit 549e4de

Browse files
authored
Fix owner and repo strings in release workflow
1 parent 66c348b commit 549e4de

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ jobs:
4040
const tags = '${{ steps.tags.outputs.tags }}'.split(' ').filter(Boolean);
4141
for (const tag of tags) {
4242
await github.rest.actions.createWorkflowDispatch({
43-
owner: Malmahrouqi3,
44-
repo: MFC-mo2,
43+
owner: 'Malmahrouqi3',
44+
repo: 'MFC-mo2',
4545
workflow_id: 'bench-frontier.yml',
4646
ref: 'benchmark-all-releases-on-frontier-runner',
4747
inputs: { tag }
@@ -50,8 +50,8 @@ jobs:
5050
let runId = null;
5151
for (let i = 0; i < 60; i++) { // Try for up to 300 seconds
5252
const runs = await github.rest.actions.listWorkflowRuns({
53-
owner: Malmahrouqi3,
54-
repo: MFC-mo2,
53+
owner: 'Malmahrouqi3',
54+
repo: 'MFC-mo2',
5555
workflow_id: 'bench-frontier.yml',
5656
event: 'workflow_dispatch',
5757
per_page: 5
@@ -74,8 +74,8 @@ jobs:
7474
let completed = false;
7575
while (!completed) {
7676
const run = await github.rest.actions.getWorkflowRun({
77-
owner: Malmahrouqi3,
78-
repo: MFC-mo2,
77+
owner: 'Malmahrouqi3',
78+
repo: 'MFC-mo2',
7979
run_id: runId
8080
});
8181
if (run.data.status === 'completed') {

0 commit comments

Comments
 (0)