-
-
Notifications
You must be signed in to change notification settings - Fork 24
30 lines (29 loc) · 893 Bytes
/
templating.yml
File metadata and controls
30 lines (29 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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:
- id: create-token
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
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: QCEC
organization: ${{ github.repository_owner }}
project-type: c++-python
repository: ${{ github.event.repository.name }}