Redo Bug fix for annotation/inference endpoint fails with long sequences as input #1174
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: Do not merge | |
on: | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
- labeled | |
- unlabeled | |
jobs: | |
do-not-merge: | |
name: Prevent merge | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check for label | |
run: | | |
if ${{ contains(github.event.pull_request.labels.*.name, 'do-not-merge') }}; then | |
echo "PR is labeled with 'do-not-merge', merging disabled" | |
exit 1 | |
fi |