Skip to content

✨ Improve Static Qubit Handling (#1569) #178

✨ Improve Static Qubit Handling (#1569)

✨ Improve Static Qubit Handling (#1569) #178

Workflow file for this run

name: Templating
on:
push:
branches:
- main
pull_request:
paths:
- ".github/workflows/templating.yml"
workflow_dispatch: # Allow manual triggering
jobs:
render-template:
name: Render template
runs-on: ubuntu-slim
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- id: read-release-drafter-categories
run: |
JSON_CONTENT=$(cat .github/workflow_inputs/release_drafter_categories.json | jq -c .)
echo "release_drafter_categories=$JSON_CONTENT" >> $GITHUB_OUTPUT
- id: create-token
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
- uses: munich-quantum-toolkit/templates@58aa931467691cea6d910016e1c75ab83780bc54 # v1.2.0
with:
token: ${{ steps.create-token.outputs.token }}
name: Core
organization: ${{ github.repository_owner }}
project-type: c++-mlir-python
repository: ${{ github.event.repository.name }}
release-drafter-categories: ${{ steps.read-release-drafter-categories.outputs.release_drafter_categories }}