Skip to content

Commit

Permalink
Rename display to show-in-overview
Browse files Browse the repository at this point in the history
  • Loading branch information
grief8 committed Sep 24, 2024
1 parent ef102f7 commit b1a78dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ inputs:
chart-description:
description: 'Description for the chart'
required: false
display:
show-in-overview:
description: 'Display the benchmark result in the overview chart'
required: false
default: 'true'
Expand Down
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ export async function configFromJobInput(): Promise<Config> {
const alertCommentCcUsers = getCommaSeparatedInput('alert-comment-cc-users');
let externalDataJsonPath: undefined | string = core.getInput('external-data-json-path');
const maxItemsInChart = getUintInput('max-items-in-chart');
const display = core.getInput('display') === 'true';
const display = core.getInput('show-in-overview') === 'true';
const chartTitle = core.getInput('chart-title');
const chartDescription = core.getInput('chart-description');
let failThreshold = getPercentageInput('fail-threshold');
Expand Down

0 comments on commit b1a78dc

Please sign in to comment.