Load Razor source generators from SDK #5362
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Request review | |
on: | |
pull_request: | |
types: ["review_requested"] | |
jobs: | |
MoveCardToReview_job: | |
name: Move card to review | |
runs-on: ubuntu-latest | |
# PRs from forks don't have required token authorization | |
if: github.event.pull_request.head.repo.full_name == github.repository | |
&& github.event.review.author_association != 'NONE' | |
steps: | |
- uses: sonarsource/gh-action-lt-backlog/MoveCardToReview@v1 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
column-id: 4971953 # Kanban "Review in progress" column |