]> git.ipfire.org Git - thirdparty/openwrt.git/commitdiff
CI: remove labeler workflow and enable webhook-based labeling 24256/head
authorJosef Schlehofer <pepe.schlehofer@gmail.com>
Thu, 16 Jul 2026 21:52:35 +0000 (23:52 +0200)
committerChristian Marangi <ansuelsmth@gmail.com>
Sat, 18 Jul 2026 10:34:34 +0000 (12:34 +0200)
Remove the .github/workflows/labeler.yml workflow and enable the "enable_labeler_yml" option in .github/formalities.json to let the webhook bot handle pull request labeling. This avoids running on GitHub Actions, so it is faster and uses fewer resources.

It uses the existing .github/labeler.yml for labels.

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/24256
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
.github/formalities.json
.github/workflows/labeler.yml [deleted file]

index cdbfd200e43b1217ecdc8a45e721ce346e590984..1face8ed12859de6c9e84c73e620d800719ff680 100644 (file)
@@ -24,5 +24,6 @@
   "check_makefile_indentation": false,
   "check_pkg_release": "warning",
   "require_linked_github_account": true,
-  "enable_stale_bot": false
+  "enable_stale_bot": false,
+  "enable_labeler_yml": true
 }
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
deleted file mode 100644 (file)
index b64d3e4..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-name: 'Pull Request Labeler'
-on:
-  - pull_request_target
-
-permissions:
-  contents: read
-
-jobs:
-  labeler:
-    permissions:
-      contents: read # to determine modified files (actions/labeler)
-      pull-requests: write # to add labels to PRs (actions/labeler)
-
-    name: Pull Request Labeler
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/labeler@v6
-        with:
-          repo-token: '${{ secrets.GITHUB_TOKEN }}'