Skip to content

Commit

Permalink
fix: stray colon character
Browse files Browse the repository at this point in the history
  • Loading branch information
imjohnbo committed Nov 25, 2020
1 parent bcd0995 commit 3735ca5
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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export async function run (): Promise<void> {
// If an owner is supplied, get repositories for that owner
if (owner != null) {
const report = await generateReport(owner)
const ymd = (new Date()).toISOString()
const ymd = (new Date()).toISOString().split('T')[0]
const filename = `${ymd}-${owner}-report.json`

core.debug(`report: ${JSON.stringify(report, null, 4)}`)
Expand Down

0 comments on commit 3735ca5

Please sign in to comment.