ci: remove Dependabot config and auto-merge #40
Workflow file for this run
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 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 }} |