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 8b73479 commit 90faaf8Copy full SHA for 90faaf8
.github/workflows/issue-subscriber.yml
@@ -18,9 +18,12 @@ jobs:
18
pip install -r requirements.txt
19
20
- name: Update watchers
21
+ # https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable
22
+ env:
23
+ LABEL_NAME: ${{ github.event.label.name }}
24
run: |
25
./github-automation.py \
- --token ${{ secrets.ISSUE_SUBSCRIBER_TOKEN }} \
26
+ --token '${{ secrets.ISSUE_SUBSCRIBER_TOKEN }}' \
27
issue-subscriber \
- --issue-number ${{ github.event.issue.number }} \
- --label-name ${{ github.event.label.name }}
28
+ --issue-number '${{ github.event.issue.number }}' \
29
+ --label-name "$LABEL_NAME"
0 commit comments