Skip to content

v0.5.0

Compare
Choose a tag to compare
@motatoes motatoes released this 03 Jun 15:24
· 175 commits to develop since this release
97f8ce0

Breaking change from v0.4.x due to the introduction of an extra parameter to github actions workflow called run_name. In order to upgrade from previous version to v0.5.0 please ensure to add the parameter to your workflow file:

on:
  workflow_dispatch:
  inputs:
    id:
      description: 'run identifier'
      required: false
    job:
      required: true
    comment_id:
      required: true
    run_name:
      required: false

run-name: '${{inputs.run_name}}'

This will make the action runs in the actions tab to appear with meaningfuil titles instead of a static title

What's Changed

Full Changelog: v0.4.39...v0.5.0