feat(generate-matrix): allow generated matrix to follow basic configuration and let github create combinations #2563
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: Manage Merge Queue | |
on: | |
pull_request: | |
branches: [main] | |
types: [labeled, unlabeled, closed] | |
jobs: | |
test: | |
if: | | |
github.event.action == 'closed' || | |
github.event.label.name == 'READY FOR MERGE' || | |
github.event.label.name == 'JUMP THE QUEUE' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
helper: manage-merge-queue |