Change: Add check labels workflow to PRs, have renovate add labels to PRs, PR template #1
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: Check PR Labels | |
on: | |
pull_request: | |
types: [opened, reopened, labeled, unlabeled, synchronize] | |
jobs: | |
check_labels: | |
name: Check labels | |
runs-on: ubuntu-latest | |
steps: | |
- uses: docker://agilepathway/pull-request-label-checker:latest | |
with: | |
one_of: major,minor,patch | |
repo_token: ${{ secrets.GITHUB_TOKEN }} |