Skip to content

Commit dc78948

Browse files
authored
Merge branch 'master' into feature/add-artist-to-item-entry-template
2 parents 5043dcc + 2680750 commit dc78948

File tree

5 files changed

+590
-577
lines changed

5 files changed

+590
-577
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Verify changelog updated
22

3-
on:
3+
on:
44
pull_request_target:
55
types:
66
- opened
@@ -14,20 +14,20 @@ jobs:
1414

1515
- name: Get all updated Python files
1616
id: changed-python-files
17-
uses: tj-actions/changed-files@v44
17+
uses: tj-actions/changed-files@v46
1818
with:
1919
files: |
2020
**.py
2121
2222
- name: Check for the changelog update
2323
id: changelog-update
24-
uses: tj-actions/changed-files@v44
24+
uses: tj-actions/changed-files@v46
2525
with:
2626
files: docs/changelog.rst
27-
27+
2828
- name: Comment under the PR with a reminder
2929
if: steps.changed-python-files.outputs.any_changed == 'true' && steps.changelog-update.outputs.any_changed == 'false'
3030
uses: thollander/actions-comment-pull-request@v2
3131
with:
32-
message: 'Thank you for the PR! The changelog has not been updated, so here is a friendly reminder to check if you need to add an entry.'
33-
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
32+
message: 'Thank you for the PR! The changelog has not been updated, so here is a friendly reminder to check if you need to add an entry.'
33+
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
3838
- name: Get changed lyrics files
3939
id: lyrics-update
40-
uses: tj-actions/changed-files@v45
40+
uses: tj-actions/changed-files@v46
4141
with:
4242
files: |
4343
beetsplug/lyrics.py

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
- uses: actions/checkout@v4
2323
- name: Get changed docs files
2424
id: changed-doc-files
25-
uses: tj-actions/changed-files@v44
25+
uses: tj-actions/changed-files@v46
2626
with:
2727
files: |
2828
docs/**
2929
- name: Get changed python files
3030
id: raw-changed-python-files
31-
uses: tj-actions/changed-files@v44
31+
uses: tj-actions/changed-files@v46
3232
with:
3333
files: |
3434
**.py

docs/dev/plugins.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Here's an example plugin that adds a simple command::
7878

7979
my_super_command = Subcommand('super', help='do something super')
8080
def say_hi(lib, opts, args):
81-
print "Hello everybody! I'm a plugin!"
81+
print("Hello everybody! I'm a plugin!")
8282
my_super_command.func = say_hi
8383

8484
class SuperPlug(BeetsPlugin):

0 commit comments

Comments
 (0)