Skip to content

Commit

Permalink
refactor: fixed syntax error with add to board workflow (#2370)
Browse files Browse the repository at this point in the history
  • Loading branch information
bizob2828 authored Jul 17, 2024
1 parent 5084b06 commit d16e258
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/board.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,6 @@ jobs:
id
}
}
}' -f project=$PROJECT_ID -f item=$item_id -f status_field=$STATUS_FIELD_ID -f status_value=${{ github.event_name === 'pull_request_target' && env.PR_OPTION_ID || env.TODO_OPTION_ID }} --silent
}' -f project=$PROJECT_ID -f item=$item_id -f status_field=$STATUS_FIELD_ID -f status_value=${{ github.event_name == 'pull_request_target' && env.PR_OPTION_ID || env.TODO_OPTION_ID }} --silent
env:
ISSUE_OR_PR_ID: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.node_id || github.event.issue.node_id }}

0 comments on commit d16e258

Please sign in to comment.