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 0aa2ec6 commit c359bb5Copy full SHA for c359bb5
.github/workflows/ci.lib.yaml
@@ -3,11 +3,22 @@ name: CI
3
on:
4
workflow_call:
5
6
+permissions:
7
+ contents: write # we need this to be able to push to the pull request
8
+
9
jobs:
10
build:
11
runs-on: ubuntu-24.04
12
13
steps:
14
+ - name: Create GitHub App token
15
+ uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2
16
+ id: app-token
17
+ with:
18
+ # required
19
+ app-id: 1312871
20
+ private-key: ${{ secrets.OPENMCP_CI_APP_PRIVATE_KEY }}
21
22
- name: Checkout code
23
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
24
with:
0 commit comments