Skip to content
Compare
Choose a tag to compare
@rhysd rhysd released this 21 Nov 11:10
· 406 commits to master since this release
  • New: Alert feature was added 🎉
    • With this feature enabled, you can get alert commit comment or make workflow fail when possible performance regression is detected like this
    • comment-on-alert input was added to enable commit comment on alert. github-token input is necessary as well to use GitHub API. Unlike deploying GitHub Pages, secrets.GITHUB_TOKEN is sufficient for this purpose (if you don't use GitHub Pages). The input is set to false by default.
    • fail-on-alert input was added to mark running workflow fail on alert. The input is set to false by default.
    • alert-threshold input was added to specify the threshold to check alerts. When current result gets worse than previous exceeding the threshold. Value is ratio such as "200%". For example, when benchmark gets result 230 ns/iter and previous one was 100ns/iter, it means 230% worse and an alert will happen.
    • Please read documentation for setup
  • New: alert-comment-cc-users input was added to specify users mentioned in an alert commit comment so that they can easily notice it via GitHub notification
  • New: skip-fetch-gh-pages input was added to skip git pull which is automatically executed on public repo or when you set github-token on private repo.
  • Improve: E2E checks on CI were added
  • Improve: Updated dependencies