Use new vector type in existing code #21
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: Flag checks | |
on: | |
pull_request: | |
types: | |
- labeled | |
jobs: | |
Check_flags: | |
name: Check flags | |
runs-on: ubuntu-latest | |
if: github.action.label.name == 'Ready to review' && github.action.pull_request.draft | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: main | |
- run: | | |
gh pr edit ${{ github.event.pull_request.number }} --remove-label "Ready to review" | |
gh pr comment ${{ github.event.pull_request.number }} -b "Please remove the draft status if the PR is ready to review" | |
shell: bash | |
env: | |
GH_TOKEN: ${{ github.token }} | |