Skip to content

MQT Reusable Workflows 1.3.2 Release

Compare
Choose a tag to compare
@github-actions github-actions released this 19 Aug 13:15
· 32 commits to refs/heads/main since this release
821a111

👀 What Changed

A small bugfix release for the MQT Core Update workflow.

The recommended workflow to incorporate the reusable workflow is

name: Update MQT Core
on:
  schedule:
    # run once a month on the first day of the month at 00:00 UTC
    - cron: "0 0 1 * *"
  workflow_dispatch:
    inputs:
      update-to-head:
        description: "Update to the latest commit on the default branch"
        type: boolean
        required: false
        default: false
  pull_request:
    paths:
      - .github/workflows/update-mqt-core.yml

concurrency:
  group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
  cancel-in-progress: true

jobs:
  update-mqt-core:
    name: ⬆️ Update MQT Core
    uses: cda-tum/mqt-workflows/.github/workflows/[email protected]
    with:
      update-to-head: ${{ github.event.inputs.update-to-head == 'true' }}

🐛 Bug Fixes

  • fix: 🐛 Fix incorrect usage of semver tool @DRovara (#26)

🤖 CI

  • fix: 🐛 Fix incorrect usage of semver tool @DRovara (#26)

⬆️ Dependencies

  • fix: 🐛 Fix incorrect usage of semver tool @DRovara (#26)

Full Changelog: v1.3.1...v1.3.2