Skip to content

Overhaul SDK docs

Overhaul SDK docs #30

Workflow file for this run

name: Check Do Not Merge
on:
pull_request:
branches:
- main
types:
- opened
- reopened
- ready_for_review
- review_requested
- labeled
- unlabeled
permissions: read-all
jobs:
fail-for-do-not-merge:
if: contains(github.event.pull_request.labels.*.name, 'do not merge')
runs-on: ubuntu-latest
steps:
- name: Fail if PR is labeled do not merge
run: |
echo "This PR is labeled do not merge. Remove the label to pass this check."
exit 1