Skip to content

Use new vector type in existing code #21

Use new vector type in existing code

Use new vector type in existing code #21

Workflow file for this run

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 }}