diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000000..839f68ee84 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,17 @@ +changelog: + exclude: + authors: + - quill-bot + categories: + - title: Bug Fixes 🛠 + labels: + - change:bugfix + - title: New Features 🎉 + labels: + - change:feature + - title: Documentation 📚 + labels: + - change:documentation + - title: Other Changes + labels: + - "*" diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml new file mode 100644 index 0000000000..26ee060b16 --- /dev/null +++ b/.github/workflows/label.yml @@ -0,0 +1,23 @@ +name: Pull Requests + +on: + pull_request: + types: [opened, labeled, unlabeled, synchronize] + +jobs: + label: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: mheap/github-action-required-labels@v5 + with: + mode: exactly + count: 1 + labels: | + change:bugfix + change:feature + change:documentation + change:chore + add_comment: false