Skip to content

ci: remove Dependabot config and auto-merge #40

ci: remove Dependabot config and auto-merge

ci: remove Dependabot config and auto-merge #40

name: Label Checker
# Backstop: every PR must carry a categorizing label. The release-drafter
# autolabeler supplies it automatically from the conventional-commit title.
on:
pull_request:
types: [opened, synchronize, reopened, labeled, unlabeled]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
permissions:
pull-requests: read
jobs:
categorizing-label:
name: Categorizing label present
runs-on: ubuntu-latest
steps:
- uses: danielchabr/pr-labels-checker@v3.3
with:
hasSome: breaking,enhancement,bug,fix,performance,refactor,changed,deprecated,removed,security,documentation,dependencies,skip-changelog
githubToken: ${{ secrets.GITHUB_TOKEN }}