Skip to content

Commit

Permalink
Fixes #853
Browse files Browse the repository at this point in the history
  • Loading branch information
orta committed Apr 8, 2019
1 parent b64b42a commit d700aff
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -15,6 +15,8 @@

<!-- Your comment below this -->

- Adds a fix for the default name of Danger in status - [@orta]

# 7.1.0

- Adds Chainsmoker, and expands the Danger DSL with the addition of `danger.git.fileMatch`.
Expand Down
2 changes: 1 addition & 1 deletion source/commands/ci/runner.ts
Expand Up @@ -62,7 +62,7 @@ export const runRunner = async (app: SharedCLI, config?: Partial<RunnerConfig>)
stdoutOnly: !platform.supportsCommenting() || app.textOnly,
verbose: app.verbose,
jsonOnly: false,
dangerID: app.id || "default",
dangerID: app.id || "Danger",
passURLForDSL: app.passURLForDSL || false,
disableGitHubChecksSupport: !app.useGithubChecks,
failOnErrors: app.failOnErrors,
Expand Down
2 changes: 1 addition & 1 deletion source/commands/danger-process.ts
Expand Up @@ -90,7 +90,7 @@ getRuntimeCISource(app).then(source => {
stdoutOnly: app.textOnly,
verbose: app.verbose,
jsonOnly: false,
dangerID: app.id || "default",
dangerID: app.id || "Danger",
passURLForDSL: app.passURLForDSL || false,
disableGitHubChecksSupport: !app.useGithubChecks,
failOnErrors: app.failOnErrors,
Expand Down

0 comments on commit d700aff

Please sign in to comment.