fix: try read relative uri's as files. #33
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: label check | |
| on: | |
| pull_request: | |
| types: [opened, reopened, labeled, unlabeled, synchronize, edited, ready_for_review] | |
| jobs: | |
| block: | |
| name: Block if do not merge | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: mheap/github-action-required-labels@v2 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| mode: exactly | |
| count: 0 | |
| labels: "do not merge" |