Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ updates:
schedule:
interval: "monthly"
labels:
- "skip-changelog"
- "dependencies"
rebase-strategy: "disabled"

Expand All @@ -18,7 +17,6 @@ updates:
schedule:
interval: "monthly"
labels:
- "skip-changelog"
- "dependencies"
rebase-strategy: "disabled"

Expand All @@ -31,7 +29,6 @@ updates:
time: "04:00"
open-pull-requests-limit: 10
labels:
- "skip-changelog"
- "dependencies"
rebase-strategy: "disabled"

Expand All @@ -44,6 +41,5 @@ updates:
time: "04:00"
open-pull-requests-limit: 10
labels:
- "skip-changelog"
- "dependencies"
rebase-strategy: "disabled"
5 changes: 1 addition & 4 deletions .github/release-draft-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ categories:
label: "security"
- title: "⚙️ Maintenance/misc"
label:
- "dependencies"
- "maintenance"
- "documentation"
Comment on lines 26 to 29
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Use labels: (plural) when providing a list.

Release Drafter expects label: "<single label>" or labels: [..]. Here, label: is mapped to a YAML sequence, which is undocumented and may be ignored. Switch to labels: to ensure all three labels are recognized. (github.com)

Apply this diff:

   - title: "⚙️ Maintenance/misc"
-    label:
+    labels:
       - "dependencies"
       - "maintenance"
       - "documentation"
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
label:
- "dependencies"
- "maintenance"
- "documentation"
labels:
- "dependencies"
- "maintenance"
- "documentation"
🤖 Prompt for AI Agents
In .github/release-draft-template.yml around lines 26 to 29, the template uses
"label:" mapped to a YAML sequence which Release Drafter expects as either a
single "label:" string or "labels:" array; update the key from "label:" to
"labels:" so the three entries are treated as a list (labels:
["dependencies","maintenance","documentation"]) and ensure YAML syntax remains a
sequence of strings.

template: |
Expand All @@ -35,11 +36,7 @@ template: |
no-changes-template: "Changes are coming soon 😎"
sort-direction: "ascending"
replacers:
- search: '/(?:and )?@dependabot-preview(?:\[bot\])?,?/g'
replace: ""
- search: '/(?:and )?@meili-bors(?:\[bot\])?,?/g'
replace: ""
- search: "/(?:and )?@meili-bot,?/g"
replace: ""
- search: '/(?:and )?@dependabot(?:\[bot\])?,?/g'
replace: ""
Loading