mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 21:14:19 +01:00
Fix changelog reminder workflow (#5305)
Quote the breaking glob as noted by @bal-e.
This commit is contained in:
commit
54a8ef7a32
2 changed files with 3 additions and 2 deletions
3
.github/workflows/changelog_reminder.yaml
vendored
3
.github/workflows/changelog_reminder.yaml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue