Skip to content

Commit

Permalink
Fix repo and owner in links
Browse files Browse the repository at this point in the history
  • Loading branch information
romeovs committed Feb 28, 2020
1 parent 3bbc810 commit 90fd2b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -22917,7 +22917,7 @@ async function main$1() {
const lcov = await parse$2(raw);

const options = {
repository: `${github_1.owner}/${github_1.repo}`,
repository: `${github_1.repo.owner}/${github_1.repo.repo}`,
pr: event.pull_request.number,
commit: event.after,
prefix: `${process.env.GITHUB_WORKSPACE}/`,
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async function main() {
const lcov = await parse(raw)

const options = {
repository: `${context.owner}/${context.repo}`,
repository: `${context.repo.owner}/${context.repo.repo}`,
pr: event.pull_request.number,
commit: event.after,
prefix: `${process.env.GITHUB_WORKSPACE}/`,
Expand Down

0 comments on commit 90fd2b7

Please sign in to comment.