Apply updated repository structure & CI workflow (#149)

This commit is contained in:
Franck Nijhof 2021-04-20 12:56:09 +02:00 committed by GitHub
parent ac11f3975a
commit 9396ce996d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 1931 additions and 25 deletions

21
.github/workflows/pr-labels.yaml vendored Normal file
View file

@ -0,0 +1,21 @@
---
name: PR Labels
# yamllint disable-line rule:truthy
on:
pull_request:
types: [opened, labeled, unlabeled, synchronize]
jobs:
pr_labels:
name: Verify
runs-on: ubuntu-latest
steps:
- name: 🏷 Verify PR has a valid label
uses: jesusvasquez333/verify-pr-label-action@v1.4.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
valid-labels: >-
breaking-change, bugfix, documentation, enhancement, refactor,
performance, new-feature, maintenance, ci, dependencies
disable-reviews: true