core: tools: mavlink-server: Update to 0.2.1 #1140
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: Docs Check | |
on: | |
pull_request: | |
types: | |
- opened | |
- labeled | |
- unlabeled | |
jobs: | |
fail-if-docs-needed: | |
if: contains(github.event.pull_request.labels.*.name, 'docs-needed') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fail if PR needs accompanying docs to be written | |
run: | | |
echo "This change needs to be documented. Please get the docs approved, and change 'docs-needed' to 'docs-complete'." | |
exit 1 |