We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e86755 commit aef74a5Copy full SHA for aef74a5
.github/workflows/templating.yml
@@ -0,0 +1,25 @@
1
+name: Templating
2
+on:
3
+ pull_request:
4
+ paths:
5
+ - ".github/workflows/templating.yml"
6
+ workflow_dispatch: # Allow manual triggering
7
+
8
+jobs:
9
+ render-template:
10
+ name: Render template
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ contents: write
14
+ pull-requests: write
15
+ steps:
16
+ - id: create-token
17
+ uses: actions/create-github-app-token@v1
18
+ with:
19
+ app-id: ${{ secrets.APP_ID }}
20
+ private-key: ${{ secrets.APP_PRIVATE_KEY }}
21
+ - uses: munich-quantum-toolkit/templates@a8866084f0336008b2d2727a34c9d27ec04694b6 # v1.0.0
22
23
+ token: ${{ steps.create-token.outputs.token }}
24
+ organization: ${{ github.repository_owner }}
25
+ repository: ${{ github.event.repository.name }}
0 commit comments