Skip to content

Commit

Permalink
Divid commands
Browse files Browse the repository at this point in the history
  • Loading branch information
yeslee-v committed Jul 4, 2024
1 parent cee10c2 commit da8caf8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/issue-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,14 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh auth setup-git

- name: Add labels and assignees to issue
- name: Add labels to issue
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh issue edit ${{ github.event.issue.number }} --add-label "2024" --add-assignee ${{ github.event.issue.user.login }}
gh issue edit ${{ github.event.issue.number }} --add-label "2024"
- name: Add assignees to issue
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh issue edit ${{ github.event.issue.number }} --add-assignee ${{ github.event.issue.user.login }}

0 comments on commit da8caf8

Please sign in to comment.