From 040a2412b3497030590acb04cbc48d41f2db7119 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0ar=C5=ABnas=20Nejus?= Date: Fri, 14 Jun 2024 16:00:36 +0100 Subject: [PATCH 1/2] Quote changed files glob --- .github/workflows/changelog_reminder.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/changelog_reminder.yaml b/.github/workflows/changelog_reminder.yaml index 5cfed3a90..da0f670a0 100644 --- a/.github/workflows/changelog_reminder.yaml +++ b/.github/workflows/changelog_reminder.yaml @@ -16,7 +16,8 @@ jobs: id: changed-python-files uses: tj-actions/changed-files@v44 with: - files: **.py + files: | + **.py - name: Check for the changelog update id: changelog-update From 249d49942efe2a2c6e7e82b122baccc456b9d2d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0ar=C5=ABnas=20Nejus?= Date: Fri, 14 Jun 2024 16:04:15 +0100 Subject: [PATCH 2/2] Make a change to test --- beets/plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/plugins.py b/beets/plugins.py index e1ac7d618..35995c341 100644 --- a/beets/plugins.py +++ b/beets/plugins.py @@ -147,7 +147,7 @@ class BeetsPlugin: return wrapper def queries(self): - """Should return a dict mapping prefixes to Query subclasses.""" + """Return a dict mapping prefixes to Query subclasses.""" return {} def track_distance(self, item, info):