LabCodeHub öffentliche Ansicht
Anmelden
Küpper / Quildrop öffentlich

fix: update permissions to include issues and pull-requests [skip ci]

R Rüdiger Küpper <rpr@9it.de> committete am 19.02.2026 06:44
8a85933eb91202cf12ae75a3674674c278b049e9
1 geänderte Datei(en) +2 −0
Kontextzeilen: 0 1 2 3 10
geändert .github/workflows/release-quilldrop.yml
+2 −0 Datei ansehen
@@ -4,20 +4,22 @@ on:
4 4
  # push:
5 5
  #   branches: [main]
6 6
  workflow_dispatch:
7 7
    # tags:
8 8
    #   - 'v*' # z.B. v1.2.3
9 9
10 10
permissions:
11 11
  contents: write
12 12
  packages: write
13 13
  id-token: write
14 +
  issues: write
15 +
  pull-requests: write
14 16
15 17
env:
16 18
  # Hier kannst du einen Default-Name definieren, der in die Artefakte wandert
17 19
  APP_VERSION: ${{ github.ref_name }}
18 20
  GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}
19 21
  TARGET_REPO: owner/target-repo
20 22
  TAG: ${{ github.ref_name }}
21 23
  REGISTRY: ghcr.io
22 24
  IMAGE_NAME: ${{ github.repository }}-2
23 25