Filter entities in the UI (part 3): Move action to a menu in the blueprint panel and keep default blueprint when using heuristics #24715
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
# Checks that all checkboxes in a PR are checked | |
name: Pull Request Checkboxes | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- edited | |
concurrency: | |
group: ${{ github.event.pull_request.number }}-pr-checkboxes | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash | |
permissions: | |
contents: "read" | |
pull-requests: "read" | |
jobs: | |
pr-checkboxes: | |
name: Check PR checkboxes | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: v0.39.0 | |
- name: Check PR checkboxes | |
run: | | |
pixi run ./scripts/ci/check_pr_checkboxes.py \ | |
--github-token ${{ secrets.GITHUB_TOKEN }} \ | |
--github-repository ${{ github.repository }} \ | |
--pr-number ${{ github.event.pull_request.number }} |