Added Makefile target build-xml to build docbook XML format. #68
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: 'Check Mergeable by Label' | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- edited | |
- labeled | |
- unlabeled | |
jobs: | |
fail-by-label: | |
if: contains(github.event.pull_request.labels.*.name, 'Pending Ratification') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fail if PR is labeled "Pending Ratification" | |
run: | | |
echo "Error: This PR is labeled as 'Pending Ratification' and cannot be merged." | |
exit 1 |