build(deps-dev): update nunomaduro/collision requirement from ^7.5.2 to ^8.4.0 #111
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 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
check_semver_labels: | |
name: Check Semver labels | |
runs-on: [ ubuntu-latest ] | |
steps: | |
- name: Check for Semver labels | |
uses: danielchabr/pr-labels-checker@v3.3 | |
with: | |
hasSome: major,minor,patch | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
check_cc_labels: | |
name: Check conventional commits labels | |
runs-on: [ ubuntu-latest ] | |
steps: | |
- name: Check conventional commits labels | |
uses: danielchabr/pr-labels-checker@v3.3 | |
with: | |
hasSome: feature,fix,deprecated,removed,security,documentation,dependencies | |
githubToken: ${{ secrets.GITHUB_TOKEN }} |