Skip to content

Plan 85: extract shared type-conversion helpers (Phase 1) #127

Plan 85: extract shared type-conversion helpers (Phase 1)

Plan 85: extract shared type-conversion helpers (Phase 1) #127

Workflow file for this run

name: Merge Queue
# Dummy change to test merge queue action.
on:
pull_request:
types: [labeled]
workflow_dispatch:
inputs:
batch_prs:
type: string
required: false
bisect:
type: boolean
default: false
concurrency:
group: merge-queue
cancel-in-progress: false
permissions: {}
jobs:
queue:
if: >-
github.event_name == 'workflow_dispatch' ||
(github.event.label.name == 'queue' &&
github.event.pull_request.base.ref == 'main' &&
github.event.pull_request.head.repo.full_name == github.repository)
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
actions: write
issues: write
steps:
- uses: jeduden/merge-queue-action@e42783e834759214cb61b18535f770508543e5aa # v0.5.1
with:
token: ${{ secrets.MERGE_QUEUE_TOKEN }}
ci_workflow: .github/workflows/ci.yml
batch_size: "5"
bisect: ${{ github.event.inputs.bisect || false }}
batch_prs: ${{ github.event.inputs.batch_prs || '' }}