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.
planning-token
1 parent a8c583c commit 02cfa9eCopy full SHA for 02cfa9e
1 file changed
.github/actions/add-team-label/action.yml
@@ -6,14 +6,19 @@ inputs:
6
description: 'GitHub token with access to read topology.json and add labels to PRs.'
7
required: true
8
9
+ planning-token:
10
+ description: 'GitHub token with access to read topology.json. Optional if team-label-token already has this access.'
11
+ required: false
12
+ default: ${{ inputs.team-label-token }}
13
+
14
runs:
15
using: composite
16
steps:
17
# Fetch the team label for the PR author from topology.json and expose it as a step output.
18
- name: Get team label
19
id: get-team-label
20
env:
- GH_TOKEN: ${{ inputs.team-label-token }}
21
+ GH_TOKEN: ${{ inputs.planning-token }}
22
USER: ${{ github.event.pull_request.user.login }}
23
shell: bash
24
run: |
0 commit comments