Skip to content

Commit 00ec596

Browse files
authored
Merge branch 'main' into issue/146
2 parents 21faa53 + 2db6ddc commit 00ec596

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/code-quality.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on:
66
branches:
77
- main
88
- master
9+
schedule:
10+
- cron: '17 2 * * *' # Run every day on a seemly random time.
911

1012
jobs:
1113
code-quality:

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
20+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2121

2222
- name: Check existence of composer.json file
2323
id: check_composer_file

features/media-import.feature

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,16 @@ Feature: Manage WordPress attachments
179179
When I run `wp post get {ATTACHMENT_ID} --format=csv --fields=post_title,post_excerpt,post_content`
180180
Then STDOUT should contain:
181181
"""
182-
post_content,"Desc\Here"
183182
post_title,"My\Title"
183+
"""
184+
And STDOUT should contain:
185+
"""
184186
post_excerpt,"Caption\Here"
185187
"""
188+
And STDOUT should contain:
189+
"""
190+
post_content,"Desc\Here"
191+
"""
186192

187193
When I run `wp post meta get {ATTACHMENT_ID} _wp_attachment_image_alt`
188194
Then STDOUT should be:

0 commit comments

Comments
 (0)