docs: Document MongoDB Change Streams config and resumability #4003
Workflow file for this run
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' |