Skip to content

Commit

Permalink
✨ add autoupdate workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
burgholzer committed Jul 1, 2024
1 parent 5e50b34 commit 801c12e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/update-mqt-core.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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 }}

0 comments on commit 801c12e

Please sign in to comment.