Skip to content

Commit

Permalink
refactor: ♻️ log style
Browse files Browse the repository at this point in the history
  • Loading branch information
bubkoo committed Sep 25, 2020
1 parent 6d377df commit c3c3a48
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: bubkoo/needs-more-info@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CONFIG_PATH: 'yaml config file path'
CONFIG_PATH: Yaml config file path
```
## Config
Expand Down
6 changes: 5 additions & 1 deletion src/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ export namespace Action {
const config = await Config.get(octokit, configPath)

core.info(
`Load config from "${configPath}": \n${JSON.stringify(config)}`,
`Load config from "${configPath}": \n${JSON.stringify(
config,
null,
2,
)}`,
)

if (config.excludeUsers) {
Expand Down

0 comments on commit c3c3a48

Please sign in to comment.