Skip to content

Commit

Permalink
ci: define a renovate branch in plug
Browse files Browse the repository at this point in the history
  • Loading branch information
florianvazelle committed Jan 20, 2024
1 parent f751937 commit 4503146
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"fileMatch": ["^plug\\.gd$"],
"matchStrings": [
"\\s+plug\\(\"(?<gitUrl>.*?)\",\\ \\{\\s*\"commit\":\\ \"(?<currentValue>)(?<currentDigest>.*)\""
"\\s+plug\\(\"(?<gitUrl>.*?)\",\\ \\{\\s*\"commit\":\\ \"(?<currentDigest>.*)\",\\s*\"renovate-branch\":\\ \"(?<currentValue>.*)\""
],
"depNameTemplate": "{{{gitUrl}}}",
"packageNameTemplate": "https://github.com/{{{gitUrl}}}",
Expand Down
44 changes: 35 additions & 9 deletions plug.gd
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,47 @@ extends "res://addons/gd-plug/plug.gd"
func _plugging():
plug(
"godot-extended-libraries/godot-debug-menu",
{"commit": "9d36ea23661d095198ff7fcfff2715172f73c983"}
{"commit": "9d36ea23661d095198ff7fcfff2715172f73c983", "renovate-branch": "master"}
)
plug(
"night-glider/Dialogue-Label",
{"commit": "a211f35e4e4c255de1b640af14430ff675e31e5c", "renovate-branch": "main"}
)
plug(
"KoBeWi/Godot-Universal-Fade",
{"commit": "f091514bba652880f81c5bc8809e0ee4498988ea", "renovate-branch": "master"}
)
plug("night-glider/Dialogue-Label", {"commit": "a211f35e4e4c255de1b640af14430ff675e31e5c"})
plug("KoBeWi/Godot-Universal-Fade", {"commit": "f091514bba652880f81c5bc8809e0ee4498988ea"})
plug(
"miskatonicstudio/goat",
{"commit": "b10f26a07b4ffb283a53632f31d529f38c688082", "include": ["addons/goat/images"]}
{
"commit": "b10f26a07b4ffb283a53632f31d529f38c688082",
"renovate-branch": "master",
"include": ["addons/goat/images"]
}
)
plug(
"samclee/EZ-Sfx-and-Music",
{"commit": "ac2b77c0336ff6edf6b26aa9342628d2ad63f359", "renovate-branch": "main"}
)
plug("samclee/EZ-Sfx-and-Music", {"commit": "ac2b77c0336ff6edf6b26aa9342628d2ad63f359"})
plug(
"HolonProduction/godot_kanban_tasks",
{"commit": "cfc914caa1dabd085024ff196bcb8578eaee1e67", "include": ["addons/kanban_tasks"]}
{
"commit": "cfc914caa1dabd085024ff196bcb8578eaee1e67",
"renovate-branch": "master",
"include": ["addons/kanban_tasks"]
}
)

# Patched version
plug("florianvazelle/EasyMenus", {"commit": "4d960ef6ab9f51a206e2eb40c2cc0b8f8eced71a"})
plug("florianvazelle/scatter", {"commit": "d1133ab81351907624a8eff48fc064a92ffeb316"})
plug("florianvazelle/Log", {"commit": "51878aa55c4169f19b2c000f0e53b77439654829"})
plug(
"florianvazelle/EasyMenus",
{"commit": "4d960ef6ab9f51a206e2eb40c2cc0b8f8eced71a", "renovate-branch": "master"}
)
plug(
"florianvazelle/scatter",
{"commit": "d1133ab81351907624a8eff48fc064a92ffeb316", "renovate-branch": "v4"}
)
plug(
"florianvazelle/Log",
{"commit": "51878aa55c4169f19b2c000f0e53b77439654829", "renovate-branch": "main"}
)

0 comments on commit 4503146

Please sign in to comment.