We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25c5078 commit a5af52fCopy full SHA for a5af52f
.github/workflows/add-bugs-to-quality-board.yaml
@@ -7,18 +7,16 @@ on:
7
jobs:
8
add-to-quality-board:
9
runs-on: ubuntu-latest
10
+ permissions:
11
+ issues: write
12
+ contents: read
13
14
steps:
- - uses: actions/create-github-app-token@v2
- id: app-token
- with:
15
- app-id: ${{ secrets.GH_APP_API_SYNC_ID }}
16
- private-key: ${{ secrets.GH_APP_API_SYNC_KEY }}
17
- id: add-bug-to-quality-board
18
name: Add issue to Quality Board
19
uses: camunda/infra-global-github-actions/add-bug-to-quality-board@main
20
with:
21
- github-token: ${{ steps.app-token.outputs.token }}
+ github-token: ${{ secrets.GITHUB_TOKEN }}
22
project-number: "187"
23
component-label: "component/documentation"
24
if: >
0 commit comments