Skip to content

Commit

Permalink
ci: 🐛 need to use quotes around action variable
Browse files Browse the repository at this point in the history
  • Loading branch information
lwjohnst86 committed Jul 2, 2024
1 parent 684d908 commit b4050db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/add-to-project-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
steps:
- name: Add issue to project board
if: ${{ github.event_name == 'issue' }}
run: gh issue edit $ISSUE --add-project $BOARD
run: gh issue edit $ISSUE --add-project "$BOARD"
env:
ISSUE: ${{ github.event.issue.html_url }}

- name: Add PR to project board
if: ${{ github.event_name == 'pull_request' }}
run: gh pr edit $PR --add-project $BOARD --add-assignee @me
run: gh pr edit $PR --add-project "$BOARD" --add-assignee @me
env:
PR: ${{ github.event.pull_request.html_url }}

0 comments on commit b4050db

Please sign in to comment.