chore(deps): update plugin pl.allegro.tech.build.axion-release to v1.18.14 #39
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: Label Checker | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
- reopened | ||
- labeled | ||
- unlabeled | ||
jobs: | ||
check_labels: | ||
name: Check Labels | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5m | ||
steps: | ||
- name: Check Semver Labels | ||
uses: docker://agilepathway/pull-request-label-checker:latest | ||
with: | ||
one_of: major,minor,patch | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Check Release Labels | ||
uses: docker://agilepathway/pull-request-label-checker:latest | ||
with: | ||
one_of: breaking-change,bug,dependency,documentation,enhancement,skip-changelog,wontfix | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} |