From f4f0fbad39950718b47f3398b594a601dafaa5f2 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Wed, 6 May 2026 13:13:47 +0200 Subject: [PATCH] [TASK] Drop broken CI workflow The "Assign Labels" GitHub Actions CI workflow is broken and has been for a long time. So drop it in order to not have misleading CI failures in pull requests. --- .github/pr-labeler.yml | 63 ------------------------------ .github/workflows/pull-request.yml | 10 ----- 2 files changed, 73 deletions(-) delete mode 100644 .github/pr-labeler.yml 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