diff --git a/.github/pr-labeler.yml b/.github/pr-labeler.yml deleted file mode 100644 index 432274b..0000000 --- a/.github/pr-labeler.yml +++ /dev/null @@ -1,63 +0,0 @@ -version: v1 - -labels: - - label: 'bug' - sync: true - matcher: - title: '\[BUGFIX\] .+' - commits: '\[BUGFIX\] .+' - branch: '^bugfix/.+' - - - label: 'documentation' - sync: true - matcher: - title: '\[DOCS\] .+' - commits: '\[DOCS\] .+' - branch: '^docs/.+' - - - label: 'enhancement' - sync: true - matcher: - title: '\[FEATURE\] .+' - commits: '\[FEATURE\] .+' - branch: '^feature/.+' - - - label: 'maintenance' - sync: true - matcher: - title: '\[TASK\] .+' - commits: '\[TASK\] .+' - branch: '^task/.+' - - - label: 'security' - sync: true - matcher: - title: '\[SECURITY\] .+' - commits: '\[SECURITY\] .+' - branch: '^security/.+' - - - label: 'breaking' - sync: true - matcher: - title: '\[!!!\]\[.+' - commits: '\[!!!\]\[.+' - - - label: 'skip-changelog' - sync: true - matcher: - branch: '^release/.+' - -checks: - - context: "Semantic Pull Request" - url: "https://docs.typo3.org/m/typo3/guide-contributionworkflow/main/en-us/Appendix/CommitMessage.html" - description: - success: Ready for review & merge. - failure: Missing semantic label for merge. - labels: - any: - - bug - - documentation - - enhancement - - maintenance - - security - - skip-changelog diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 84127b2..e82933b 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -21,13 +21,3 @@ jobs: pattern: '^[^#].{1,74}' flags: 'gm' error: 'The maximum line length of 74 characters is exceeded.' - - assign_labels: - name: Assign Labels - needs: check_commit_message - runs-on: ubuntu-latest - steps: - - name: Assign and check labels - uses: fuxingloh/multi-labeler@v2 - with: - config-path: .github/pr-labeler.yml