Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/actions/gas-compare/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ name: Compare gas costs
description: Compare gas costs between branches
inputs:
token:
description: github token
description: GitHub token, required to access GitHub API
required: true
report:
description: report to read from
description: Path to the report to compare, default is "gasReporterOutput.json"
required: false
default: gasReporterOutput.json
out_report:
description: report to read
description: Path to save the output report, default is "${{ github.ref_name }}.gasreport.json"
required: false
default: ${{ github.ref_name }}.gasreport.json
ref_report:
description: report to read from
description: Path to the reference report for comparison, default is "${{ github.base_ref }}.gasreport.json"
required: false
default: ${{ github.base_ref }}.gasreport.json

Expand Down