fix: Correct MySQL required SSL mode — it verifies the server certificate #4067
This file contains hidden or 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: Enforce Pulls with Spice | |
| on: | |
| pull_request: | |
| types: [labeled, unlabeled, opened, edited, synchronize, assigned, unassigned] | |
| merge_group: | |
| types: [checks_requested] | |
| jobs: | |
| enforce-pull-with-spice: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - uses: spiceai/pulls-with-spice-action@v1.0.7 | |
| if: github.event_name == 'pull_request' | |
| with: | |
| require_title_min_length: '10' | |
| required_labels_any: 'area/blog,area/docs,area/cookbook,dependencies' | |
| banned_labels: 'invalid,wontfix,nomerge,duplicate' | |
| require_assignee: 'true' |