Skip to content

Commit

Permalink
Merge pull request #35 from testdriverai/patch-runid
Browse files Browse the repository at this point in the history
fix for runid
  • Loading branch information
ianjennings authored Dec 28, 2024
2 parents f286267 + f61bba2 commit 47e87c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33668,7 +33668,7 @@ class Config {
head_ref: github.context.head_ref,
ref: github.context.ref,
workflow: github.context.workflow,
run_id: github.runId
run_id: github.context.runId
};
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Config {
head_ref: github.context.head_ref,
ref: github.context.ref,
workflow: github.context.workflow,
run_id: github.runId
run_id: github.context.runId
};
}
}
Expand Down

0 comments on commit 47e87c5

Please sign in to comment.