Skip to content

Commit

Permalink
fix: remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickHeneise committed Mar 3, 2022
1 parent 1cd5dfb commit 787d25e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31561,12 +31561,9 @@ var __webpack_exports__ = {}
const locationsFile = core.getInput('locations')

const octokit = github.getOctokit(repoToken)
const context = github.context
console.log(context)

const events = await fetchIssues(octokit, locationsFile)
const result = await createIcs(events)
console.log(result)
await createIcs(events)
}

run()
Expand Down
5 changes: 1 addition & 4 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,9 @@ async function run() {
const locationsFile = core.getInput('locations')

const octokit = github.getOctokit(repoToken)
const context = github.context
console.log(context)

const events = await fetchIssues(octokit, locationsFile)
const result = await createIcs(events)
console.log(result)
await createIcs(events)
}

run()

0 comments on commit 787d25e

Please sign in to comment.