Skip to content

Commit

Permalink
fix: repository details
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosdevpereira committed Oct 7, 2022
1 parent a9ce981 commit 73fefb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Action.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class GithubAction {

core.info('context: ' + JSON.stringify(context));
core.info('config: ' + JSON.stringify(config));
this.repository = new Repository(context.repo.repo, context.repo.owner, config);
this.repository = new Repository(context.payload.repository.name, context.payload.repository.owner.login, config);
this.commit = new Commit(context.sha, this.repository);

this.testResults = null;
Expand Down

0 comments on commit 73fefb5

Please sign in to comment.