Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,5 @@ jobs:
| `comment_on_pr` | Optional | Set to `true` to publish the results as comment to the PR (applicable if workflow run is triggered by PR). Defaults to `true`. <br/> Requires `pull-requests: write` permission
| `job_summary` | Optional | Set to `true` to publish the results as part of the [job summary page](https://github.blog/2022-05-09-supercharging-github-actions-with-job-summaries/) of the workflow run. Defaults to `true`.
| `theme` | Optional | Set to `dark` to generate charts compatible with Github **dark** mode. Defaults to `light`.
| `save_raw_stats` | Optional | Set to `true` to save raw stats as artifacts. Defaults to `false`.
| `artifact_retention_days` | Optional | Number of days to retain the stats artifacts. Defaults to `1`.
8 changes: 8 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ inputs:
description: "Set to `dark` to generate charts compatible with Github dark mode. Defaults to 'light'."
default: "light"
required: false
save_raw_stats:
description: "Set to `true` to save raw stats as artifacts. Defaults to 'false'."
default: "false"
required: false
artifact_retention_days:
description: "Number of days to retain the stats artifacts. Defaults to '1'."
default: "1"
required: false

runs:
using: "node20"
Expand Down
Loading