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 0b19afb commit f745d6cCopy full SHA for f745d6c
.github/workflows/extensions.yml
@@ -42,7 +42,9 @@ jobs:
42
}
43
- name: Add label if user is a team member
44
if: steps.check_team_membership.outputs.is_team_member == 'true'
45
- uses: actions-ecosystem/action-add-labels@v1
46
- with:
47
- github_token: ${{ secrets.GITHUB_TOKEN }}
48
- labels: "frequent-flyer"
+ run: |
+ curl -X POST \
+ -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
+ -H "Accept: application/vnd.github.v3+json" \
49
+ https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/labels \
50
+ -d '{"labels":["Frequent flyer"]}'
0 commit comments