Sfoglia il codice sorgente

chore: Enhance stale bot configuration with additional exempt labels and increase operations per run

David Höck 7 mesi fa
parent
commit
63e31a3d78
1 ha cambiato i file con 28 aggiunte e 3 eliminazioni
  1. 28 3
      .github/workflows/stale_bot.yml

+ 28 - 3
.github/workflows/stale_bot.yml

@@ -18,14 +18,39 @@ jobs:
                   days-before-stale: 30
                   days-before-close: 3
                   # Act ONLY on issues that *still* have one of these labels
-                  any-of-labels: 'status: missing info ❓,status: reproduction needed 🔁,type: bug 🐛'
+                  any-of-issue-labels: |
+                      status: missing info ❓,
+                      status: reproduction needed 🔁,
+                      type: bug 🐛
                   # Never touch these
-                  exempt-issue-labels: 'type: feature ✨,type: chore 🧤,type: security 🔐,👋 contributions welcome,🚀 good first task'
+                  exempt-issue-labels: |
+                      type: feature ✨,
+                      type: chore 🧤,
+                      type: security 🔐,
+                      👋 contributions welcome,
+                      🚀 good first task,
+                      @vendure/admin-ui,
+                      @vendure/admin-ui-plugin,
+                      @vendure/asset-server-plugin,
+                      @vendure/cli,
+                      @vendure/core,
+                      @vendure/create,
+                      @vendure/dashboard,
+                      @vendure/elasticsearch-plugin,
+                      @vendure/email-plugin,
+                      @vendure/job-queue-plugin,
+                      @vendure/payments-plugins,
+                      @vendure/testing,
+                      @vendure/ui-devkit,
+                      P1: urgent,
+                      P2: important,
+                      P3: minor,
+                      P4: low
                   stale-issue-label: stale
                   close-issue-message: >
                       Closed automatically because the **{{issue.labels}}** label is
                       still present and there has been no activity for {{days-before-close}}
                       days after a reminder.  Please comment with new information and
                       remove the label to re-open.
-                  operations-per-run: 500
+                  operations-per-run: 1000
                   debug-only: true