github diggerhq/digger v0.5.0

latest releases: vLatest, latest, v0.5.14...
27 days ago

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

Don't miss a new digger release

NewReleases is sending notifications on new releases.