Bump cda-tum/mqt-workflows from 1.1.5 to 1.4.4 #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: ${{ fromJSON(github.event.inputs.update-to-head) || false }} |