Skip to content

Commit

Permalink
is this the syntax?
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharthkp authored Jul 9, 2024
1 parent 15d280c commit c775c48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/add_staff_label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
- name: Add label to issue
if: ${{ github.event.issue.author_association == 'MEMBER' }}
run: |
gh issue edit {{github.event.issue.html_url}} --add-label staff
gh issue edit ${{github.event.issue.html_url}} --add-label staff
- name: Add label to pull_request
if: ${{ github.event.pull_request.author_association == 'MEMBER' }}
run: |
gh pr edit {{github.event.pull_request.html_url}} --add-label staff
gh pr edit ${{github.event.pull_request.html_url}} --add-label staff

0 comments on commit c775c48

Please sign in to comment.