Skip to content

Commit

Permalink
Added logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanbokvad committed Sep 8, 2023
1 parent 7e2c848 commit 2dc9e4c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Pentest/PentestService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@ export class PentestService {
console.log(`Repo: ${repo}`);

console.log('Going to get Pentest tickets from github boards');

await octokit.rest.projects
.listForRepo({
.createForRepo({
owner: owner,
repo: repo,
name: 'Projects Jonathan B',
})
.then(async (response) => {
console.log('Got the column for repo');
Expand All @@ -37,6 +39,7 @@ export class PentestService {
core.warning('Error getting column!');
console.log('Error: ', error);
});

await octokit.rest.projects
.listCards({
owner: owner,
Expand Down

0 comments on commit 2dc9e4c

Please sign in to comment.